(...parts: Array<Uint8Array | number>)
| 8 | } from '../src/index.js'; |
| 9 | |
| 10 | const concat = (...parts: Array<Uint8Array | number>): Uint8Array => ( |
| 11 | flattenBinArray(parts.map((part) => (typeof part === 'number' ? Uint8Array.of(part) : part))) |
| 12 | ); |
| 13 | |
| 14 | const zeroes = (length: number): Uint8Array => new Uint8Array(length); |
| 15 |
no outgoing calls
no test coverage detected