(path: string)
| 408 | }); |
| 409 | |
| 410 | async function getUint8ArrayFromImage(path: string) { |
| 411 | const image = await readFile(path); |
| 412 | const buf = Buffer.from(image); |
| 413 | return new Uint8Array(buf); |
| 414 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…