(input)
| 1418 | } |
| 1419 | |
| 1420 | function isAscii(input) { |
| 1421 | if (isTypedArray(input) || isAnyArrayBuffer(input)) { |
| 1422 | return bindingIsAscii(input); |
| 1423 | } |
| 1424 | |
| 1425 | throw new ERR_INVALID_ARG_TYPE('input', ['ArrayBuffer', 'Buffer', 'TypedArray'], input); |
| 1426 | } |
| 1427 | |
| 1428 | module.exports = { |
| 1429 | Buffer, |
no test coverage detected
searching dependent graphs…