(condition: unknown, message: string)
| 10 | import type { DataPoint } from '../../src/config/types'; |
| 11 | |
| 12 | const assert = (condition: unknown, message: string): void => { |
| 13 | if (!condition) throw new Error(message); |
| 14 | }; |
| 15 | |
| 16 | /** |
| 17 | * Minimal fake GPUDevice for Node.js acceptance tests. |