(state, chunk)
| 6378 | } |
| 6379 | |
| 6380 | function chunkInvalid(state, chunk) { |
| 6381 | var er; |
| 6382 | if (!_isUint8Array(chunk) && typeof chunk !== 'string' && chunk !== undefined && !state.objectMode) { |
| 6383 | er = new TypeError('Invalid non-string/buffer chunk'); |
| 6384 | } |
| 6385 | return er; |
| 6386 | } |
| 6387 | |
| 6388 | // if it's past the high water mark, we can push in some more. |
| 6389 | // Also, if we have no data yet, we can stand some |
no test coverage detected
searching dependent graphs…