(chunk: Chunk | PrecomputedChunk)
| 78 | } |
| 79 | |
| 80 | export function byteLengthOfChunk(chunk: Chunk | PrecomputedChunk): number { |
| 81 | return Buffer.byteLength(chunk, 'utf8'); |
| 82 | } |
| 83 | |
| 84 | export function byteLengthOfBinaryChunk(chunk: BinaryChunk): number { |
| 85 | return chunk.byteLength; |
no outgoing calls
no test coverage detected