Home
last modified time | relevance | path

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

/third_party/node/lib/internal/util/
Dtypes.js13 function isUint8Array(value) { function
61 isUint8Array, property
/third_party/node/lib/
Dbuffer.js92 isUint8Array,
217 if (!isUint8Array(source))
219 if (!isUint8Array(target))
567 if (!isUint8Array(buf1)) {
571 if (!isUint8Array(buf2)) {
609 if (!isUint8Array(buf)) {
869 if (!isUint8Array(otherBuffer)) {
924 if (!isUint8Array(target)) {
1002 if (isUint8Array(val)) {
1250 if (!isUint8Array(source)) {
Dtls.js58 isUint8Array,
149 } else if (isUint8Array(protocols)) {
Dstream.js140 Stream._isUint8Array = require('internal/util/types').isUint8Array;
D_http_outgoing.js79 const { isUint8Array } = require('internal/util/types');
874 } else if (typeof chunk !== 'string' && !isUint8Array(chunk)) {
Dzlib.js63 isUint8Array,
117 if (isArrayBufferView(buffer) && !isUint8Array(buffer)) {
Dnet.js113 const { isUint8Array } = require('internal/util/types');
337 if (!isUint8Array(userBuf))
466 (isUint8Array(onread.buffer) || typeof onread.buffer === 'function') &&
/third_party/node/lib/internal/fs/
Dutils.js44 isUint8Array,
224 if ((typeof path === 'string' || isUint8Array(path)) &&
229 if (typeof path === 'string' && isUint8Array(name)) {
238 if (isUint8Array(path) && isUint8Array(name)) {
365 const pathIsUint8Array = isUint8Array(path);
695 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/deps/undici/src/lib/fetch/
Dbody.js21 const { isUint8Array, isArrayBuffer } = require('util/types')
299 if (isUint8Array(body)) {
449 if (!isUint8Array(chunk)) {
Dutil.js8 const { isUint8Array } = require('util/types')
936 if (!isUint8Array(chunk)) {
/third_party/node/lib/internal/
Dstream_base_commons.js28 const { isUint8Array } = require('internal/util/types');
184 if (isUint8Array(nextBuf))
Dencoding.js46 isUint8Array,
347 if (!dest || !isUint8Array(dest))
/third_party/node/deps/npm/node_modules/readable-stream/lib/
Dstream.js131 Stream._isUint8Array = function isUint8Array(value) { function
/third_party/node/deps/undici/src/lib/fileapi/
Dutil.js92 if (!done && types.isUint8Array(value)) {
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_util.js495 this.isUint8Array = function (...args) { method
/third_party/node/doc/api/
Dutil.md2719 ### `util.types.isUint8Array(value)`
2731 util.types.isUint8Array(new ArrayBuffer()); // Returns false
2732 util.types.isUint8Array(new Uint8Array()); // Returns true
2733 util.types.isUint8Array(new Float64Array()); // Returns false
/third_party/node/deps/undici/
Dundici.js4221 var { isUint8Array, isArrayBuffer } = require("util/types");
4383 if (isUint8Array(body)) {
4487 if (!isUint8Array(chunk)) {
/third_party/node/tools/lint-md/
Dlint-md.mjs21204 } else if (typeof value === 'string' || isUint8Array$1(value)) {
21340 function isUint8Array$1(value) {
21384 } else if (isUint8Array(description)) {
21397 function isUint8Array(value) { function
/third_party/node/doc/changelogs/
DCHANGELOG_V12.md4362 …s://github.com/nodejs/node/commit/2dc52ad09c)] - **stream**: simplify isUint8Array helper (Anna He…