* Check if value is a primitive chunk (string, ArrayBuffer, or ArrayBufferView). * @returns {boolean}
(value)
| 61 | * @returns {boolean} |
| 62 | */ |
| 63 | function isPrimitiveChunk(value) { |
| 64 | return typeof value === 'string' || isAnyArrayBuffer(value) || ArrayBufferIsView(value); |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Check if value is a sync iterable (has Symbol.iterator). |
no outgoing calls
no test coverage detected