Home
last modified time | relevance | path

Searched refs:isUint8Array (Results 1 – 14 of 14) sorted by relevance

/third_party/node/lib/internal/util/
Dtypes.js12 function isUint8Array(value) { function
60 isUint8Array, property
Dcomparisons.js45 isUint8Array,
145 isUint8Array,
/third_party/node/lib/
Dbuffer.js85 isUint8Array
213 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)) {
Dstream.js40 Stream._isUint8Array = require('internal/util/types').isUint8Array;
D_http_outgoing.js68 const { isUint8Array } = require('internal/util/types');
721 if (!fromEnd && typeof chunk !== 'string' && !(isUint8Array(chunk))) {
Dnet.js103 const { isUint8Array } = require('internal/util/types');
267 if (!isUint8Array(userBuf))
361 (isUint8Array(onread.buffer) || typeof onread.buffer === 'function') &&
Dzlib.js63 isUint8Array,
114 if (isArrayBufferView(buffer) && !isUint8Array(buffer)) {
/third_party/node/lib/internal/fs/
Dutils.js35 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)) {
/third_party/node/test/parallel/
Dtest-util-types.js80 assert(!types.isUint8Array({ [Symbol.toStringTag]: 'Uint8Array' }));
81 assert(types.isUint8Array(vm.runInNewContext('new Uint8Array')));
230 isUint8Array: [ property
/third_party/node/lib/internal/
Dstream_base_commons.js31 const { isUint8Array } = require('internal/util/types');
182 if (isUint8Array(nextBuf))
Dencoding.js39 isUint8Array
339 if (!dest || !isUint8Array(dest))
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_util.js495 this.isUint8Array = function (...args) { method
/third_party/node/doc/api/
Dutil.md1921 ### `util.types.isUint8Array(value)`
1932 util.types.isUint8Array(new ArrayBuffer()); // Returns false
1933 util.types.isUint8Array(new Uint8Array()); // Returns true
1934 util.types.isUint8Array(new Float64Array()); // Returns false
/third_party/node/doc/changelogs/
DCHANGELOG_V12.md1943 …s://github.com/nodejs/node/commit/2dc52ad09c)] - **stream**: simplify isUint8Array helper (Anna He…