(encodedString: Uint8Array)
| 49 | } |
| 50 | |
| 51 | export function decodeString(encodedString: Uint8Array): string { |
| 52 | return binToUtf8(encodedString); |
| 53 | } |
| 54 | |
| 55 | export function placeholder(size: number): Uint8Array { |
| 56 | return new Uint8Array(size).fill(0); |
no outgoing calls
no test coverage detected