Searched refs:isTypedArray (Results 1 – 13 of 13) sorted by relevance
/third_party/typescript/tests/baselines/reference/ |
D | unionWithIndexSignature.js | 19 export function isTypedArray(a: {}): a is Int32Array | Uint8Array { 24 if (isTypedArray(arr)) { 33 exports.flatten = exports.isTypedArray = exports.foo = void 0; 38 function isTypedArray(a) { function 41 exports.isTypedArray = isTypedArray; 43 if (isTypedArray(arr)) {
|
D | unionWithIndexSignature.types | 33 export function isTypedArray(a: {}): a is Int32Array | Uint8Array { 34 >isTypedArray : (a: {}) => a is Int32Array | Uint8Array 51 if (isTypedArray(arr)) { 52 >isTypedArray(arr) : boolean 53 >isTypedArray : (a: {}) => a is Int32Array | Uint8Array
|
D | unionWithIndexSignature.symbols | 43 export function isTypedArray(a: {}): a is Int32Array | Uint8Array { 44 >isTypedArray : Symbol(isTypedArray, Decl(unionWithIndexSignature.ts, 15, 49)) 64 if (isTypedArray(arr)) { 65 >isTypedArray : Symbol(isTypedArray, Decl(unionWithIndexSignature.ts, 15, 49))
|
/third_party/node/deps/npm/node_modules/is-typedarray/ |
D | index.js | 1 module.exports = isTypedArray 2 isTypedArray.strict = isStrictTypedArray 3 isTypedArray.loose = isLooseTypedArray 18 function isTypedArray(arr) { function
|
D | README.md | 10 ### isTypedArray(array)
|
/third_party/typescript/tests/cases/compiler/ |
D | unionWithIndexSignature.ts | 20 export function isTypedArray(a: {}): a is Int32Array | Uint8Array { function 25 if (isTypedArray(arr)) {
|
/third_party/node/lib/internal/util/ |
D | types.js | 8 function isTypedArray(value) { function 59 isTypedArray, property
|
D | inspect.js | 115 isTypedArray, 847 } else if (isTypedArray(value)) {
|
/third_party/node/lib/internal/console/ |
D | constructor.js | 59 isTypedArray, isSet, isMap, isSetIterator, isMapIterator, 660 const isArray = (v) => ArrayIsArray(v) || isTypedArray(v) || isBuffer(v);
|
/third_party/node/test/parallel/ |
D | test-util-types.js | 216 isTypedArray: [ property
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_util.js | 490 this.isTypedArray = function (...args) { method
|
/third_party/node/deps/npm/node_modules/request/ |
D | request.js | 18 var isTypedArray = require('is-typedarray').strict variable 420 if (isTypedArray(self.body)) {
|
/third_party/node/doc/api/ |
D | util.md | 1903 ### `util.types.isTypedArray(value)` 1914 util.types.isTypedArray(new ArrayBuffer()); // Returns false 1915 util.types.isTypedArray(new Uint8Array()); // Returns true 1916 util.types.isTypedArray(new Float64Array()); // Returns true
|