()
| 52 | } |
| 53 | |
| 54 | async function testBytesEmpty() { |
| 55 | const data = await bytes(from([])); |
| 56 | assert.ok(data instanceof Uint8Array); |
| 57 | assert.strictEqual(data.byteLength, 0); |
| 58 | } |
| 59 | |
| 60 | // ============================================================================= |
| 61 | // arrayBufferSync / arrayBuffer |
no test coverage detected
searching dependent graphs…