/third_party/node/test/parallel/ |
H A D | test-child-process-validate-stdio.js | 21 assert.strictEqual(Object.hasOwn(result, 'stdio'), true); 22 assert.strictEqual(Object.hasOwn(result, 'ipc'), true); 23 assert.strictEqual(Object.hasOwn(result, 'ipcFd'), true);
|
H A D | test-error-serdes.js | 77 assert.strictEqual(Object.hasOwn(cycle(new Error('Error with cause', { cause: undefined })), 'cause'), true); 81 assert.strictEqual(Object.hasOwn(cycle(errorWithThrowingCause), 'cause'), false); 82 assert.strictEqual(Object.hasOwn(cycle(errorWithCyclicCause), 'cause'), true); 85 assert.strictEqual(Object.hasOwn(cycle(new ErrorWithThowingCause('Error with cause')), 'cause'), false);
|
H A D | test-whatwg-url-properties.js | 104 Object.hasOwn(value, 'prototype'), 119 Object.hasOwn(get, 'prototype'), 129 Object.hasOwn(set, 'prototype'),
|
H A D | test-assert-calltracker-calls.js | 101 assert.strictEqual(Object.hasOwn(callsfunc, 'length'), false); 122 assert.strictEqual(Object.hasOwn(callsfunc, 'length'), true);
|
H A D | test-stream2-basic.js | 425 assert(Object.hasOwn(R.prototype, 'readableEncoding')); 433 assert(Object.hasOwn(R.prototype, 'readableObjectMode')); 441 assert(Object.hasOwn(W.prototype, 'writableObjectMode'));
|
H A D | test-fs-statfs.js | 12 assert.ok(Object.hasOwn(statfs, k));
|
H A D | test-http-client-default-headers-exist.js | 44 assert(Object.hasOwn(expectedHeaders, req.method),
|
H A D | test-cluster-dgram-1.js | 75 if (Object.hasOwn(cluster.workers, key))
|
H A D | test-cluster-dgram-bind-fd.js | 66 if (Object.hasOwn(cluster.workers, key))
|
H A D | test-cluster-basic.js | 147 assert(Object.hasOwn(arguments[0], 'fd'));
|
/third_party/jsframework/runtime/main/util/ |
H A D | props.js | 2 import { hasOwn } from '../../utils/index'; 24 if (!hasOwn(prop, 'default')) {
|
H A D | shared.js | 60 export function hasOwn(obj, prop) {
|
/third_party/jsframework/runtime/main/reactivity/ |
H A D | observer.js | 10 hasOwn, 111 if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) { 191 if (hasOwn(obj, key)) { 222 if (!hasOwn(obj, key)) {
|
H A D | state.js | 10 hasOwn 45 if(hasOwn(options, 'mixins')) {
|
/third_party/node/deps/npm/node_modules/promise-retry/ |
H A D | index.js | 6 var hasOwn = Object.prototype.hasOwnProperty; 9 return err && err.code === 'EPROMISERETRY' && hasOwn.call(err, 'retried');
|
/third_party/node/deps/npm/node_modules/is-core-module/ |
H A D | index.js | 3 var hasOwn = require('hasown'); variable 68 return hasOwn(data, x) && versionIncluded(nodeVersion, data[x]);
|
/third_party/node/benchmark/http/ |
H A D | check_invalid_header_char.js | 58 if (Object.hasOwn(groupedInputs, input)) {
|
/third_party/node/deps/npm/node_modules/nopt/lib/ |
H A D | nopt-lib.js | 5 const hasOwn = (o, k) => Object.prototype.hasOwnProperty.call(o, k) 8 let hasType = hasOwn(types, k) 316 if (!hasType && hasOwn(data, arg)) {
|
/third_party/node/deps/undici/src/lib/fetch/ |
H A D | util.js | 1094 * Fetch supports node >= 16.8.0, but Object.hasOwn was added in v16.9.0. 1096 const hasOwn = Object.hasOwn || ((dict, key) => Object.prototype.hasOwnProperty.call(dict, key)) 1130 hasOwn,
|
H A D | webidl.js | 4 const { hasOwn, toUSVString } = require('./util') 349 if (!hasOwn(dictionary, key)) { 358 const hasDefault = hasOwn(options, 'defaultValue')
|
/third_party/node/benchmark/es/ |
H A D | map-bench.js | 75 has(key) { return Object.hasOwn(m, `$${key}`); },
|
/third_party/node/test/common/ |
H A D | report.js | 74 assert(Object.hasOwn(report, section));
|
/third_party/node/deps/undici/ |
H A D | undici.js | 1739 var hasOwn = Object.hasOwn || ((dict, key) => Object.prototype.hasOwnProperty.call(dict, key)); 1772 hasOwn, 1795 var { hasOwn, toUSVString } = require_util2(); 2006 if (!hasOwn(dictionary, key)) { 2014 const hasDefault = hasOwn(options, "defaultValue");
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
H A D | stylo.hpp | [all...] |