Searched refs:isUint8Array (Results 1 – 14 of 14) sorted by relevance
12 function isUint8Array(value) { function60 isUint8Array, property
45 isUint8Array,145 isUint8Array,
85 isUint8Array213 if (!isUint8Array(source))215 if (!isUint8Array(target))528 if (!isUint8Array(buf1)) {532 if (!isUint8Array(buf2)) {572 if (!isUint8Array(buf)) {831 if (!isUint8Array(otherBuffer)) {886 if (!isUint8Array(target)) {964 if (isUint8Array(val)) {1208 if (!isUint8Array(source)) {
40 Stream._isUint8Array = require('internal/util/types').isUint8Array;
68 const { isUint8Array } = require('internal/util/types');721 if (!fromEnd && typeof chunk !== 'string' && !(isUint8Array(chunk))) {
103 const { isUint8Array } = require('internal/util/types');267 if (!isUint8Array(userBuf))361 (isUint8Array(onread.buffer) || typeof onread.buffer === 'function') &&
63 isUint8Array,114 if (isArrayBufferView(buffer) && !isUint8Array(buffer)) {
35 isUint8Array,210 if ((typeof path === 'string' || isUint8Array(path)) &&215 if (typeof path === 'string' && isUint8Array(name)) {224 if (isUint8Array(path) && isUint8Array(name)) {347 const pathIsUint8Array = isUint8Array(path);651 if (typeof path !== 'string' && !isUint8Array(path)) {
80 assert(!types.isUint8Array({ [Symbol.toStringTag]: 'Uint8Array' }));81 assert(types.isUint8Array(vm.runInNewContext('new Uint8Array')));230 isUint8Array: [ property
31 const { isUint8Array } = require('internal/util/types');182 if (isUint8Array(nextBuf))
39 isUint8Array339 if (!dest || !isUint8Array(dest))
495 this.isUint8Array = function (...args) { method
1921 ### `util.types.isUint8Array(value)`1932 util.types.isUint8Array(new ArrayBuffer()); // Returns false1933 util.types.isUint8Array(new Uint8Array()); // Returns true1934 util.types.isUint8Array(new Float64Array()); // Returns false
1943 …s://github.com/nodejs/node/commit/2dc52ad09c)] - **stream**: simplify isUint8Array helper (Anna He…