Lines Matching refs:object

4273object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var …
5668object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var …
9067object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var …
12951object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var …
14496object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var …
15873object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var …
20746object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var …
23660object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var …
26230object, property) { while (!Object.prototype.hasOwnProperty.call(object, property)) { object = _ge…
40919 var object = {};
40920 object[ITERATOR] = function () {
40927 exec(object);
41032 module.exports = DESCRIPTORS ? function (object, key, value) {
41033 return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
41034 } : function (object, key, value) {
41035 object[key] = value;
41036 return object;
42025 module.exports = function (object, names) {
42026 var O = toIndexedObject(object);
52166 var object = new ZipObject(name, zipObjectContent, o);
52167 this.files[name] = object;
52243 function isRegExp(object) {
52244 return Object.prototype.toString.call(object) === "[object RegExp]";
55898 return function (object) {
55899 return object == null ? undefined : object[key];
55947 function getValue(object, key) {
55948 return object == null ? undefined : object[key];
56657 function baseForOwn(object, iteratee) {
56658 return object && baseFor(object, iteratee, keys);
56670 function baseGet(object, path) {
56671 path = isKey(path, object) ? [path] : castPath(path);
56675 while (object != null && index < length) {
56676 object = object[toKey(path[index++])];
56679 return index && index == length ? object : undefined;
56703 function baseHasIn(object, key) {
56704 return object != null && key in Object(object);
56751 function baseIsEqualDeep(object, other, equalFunc, customizer, bitmask, stack) {
56752 var objIsArr = isArray(object),
56758 objTag = getTag(object);
56767 var objIsObj = objTag == objectTag && !isHostObject(object),
56773 …urn objIsArr || isTypedArray(object) ? equalArrays(object, other, equalFunc, customizer, bitmask, …
56777 var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'),
56781 var objUnwrapped = objIsWrapped ? object.value() : object,
56793 return equalObjects(object, other, equalFunc, customizer, bitmask, stack);
56807 function baseIsMatch(object, source, matchData, customizer) {
56812 if (object == null) {
56816 object = Object(object);
56821 if (noCustomizer && data[2] ? data[1] !== object[data[0]] : !(data[0] in object)) {
56829 objValue = object[key],
56833 if (objValue === undefined && !(key in object)) {
56840 var result = customizer(objValue, srcValue, key, object, source, stack);
56916 function baseKeys(object) {
56917 if (!isPrototype(object)) {
56918 return nativeKeys(object);
56923 for (var key in Object(object)) {
56924 if (hasOwnProperty.call(object, key) && key != 'constructor') {
56947 return function (object) {
56948 return object === source || baseIsMatch(object, source, matchData);
56966 return function (object) {
56967 var objValue = get(object, path);
56968 …return objValue === undefined && objValue === srcValue ? hasIn(object, path) : baseIsEqual(srcValu…
56981 return function (object) {
56982 return baseGet(object, path);
57080 return function (object, iteratee, keysFunc) {
57082 iterable = Object(object),
57083 props = keysFunc(object),
57094 return object;
57192 function equalByTag(object, other, tag, equalFunc, customizer, bitmask, stack) {
57195 if (object.byteLength != other.byteLength || object.byteOffset != other.byteOffset) {
57199 object = object.buffer;
57203 …if (object.byteLength != other.byteLength || !equalFunc(new Uint8Array(object), new Uint8Array(oth…
57214 return eq(+object, +other);
57217 return object.name == other.name && object.message == other.message;
57224 return object == other + '';
57233 if (object.size != other.size && !isPartial) {
57238 var stacked = stack.get(object);
57246 stack.set(object, other);
57247 … var result = equalArrays(convert(object), convert(other), equalFunc, customizer, bitmask, stack);
57248 stack['delete'](object);
57253 return symbolValueOf.call(object) == symbolValueOf.call(other);
57276 function equalObjects(object, other, equalFunc, customizer, bitmask, stack) {
57278 objProps = keys(object),
57298 var stacked = stack.get(object);
57305 stack.set(object, other);
57306 stack.set(other, object);
57311 var objValue = object[key],
57315 …l ? customizer(othValue, objValue, key, other, object, stack) : customizer(objValue, othValue, key…
57328 var objCtor = object.constructor,
57331 …if (objCtor != othCtor && 'constructor' in object && 'constructor' in other && !(typeof objCtor ==…
57336 stack['delete'](object);
57363 function getMatchData(object) {
57364 var result = keys(object),
57369 value = object[key];
57385 function getNative(object, key) {
57386 var value = getValue(object, key);
57440 function hasPath(object, path, hasFunc) {
57441 path = isKey(path, object) ? [path] : castPath(path);
57449 if (!(result = object != null && hasFunc(object, key))) {
57453 object = object[key];
57460 var length = object ? object.length : 0;
57461 …n !!length && isLength(length) && isIndex(key, length) && (isArray(object) || isArguments(object));
57487 function isKey(value, object) {
57498 …eIsPlainProp.test(value) || !reIsDeepProp.test(value) || object != null && value in Object(object);
57565 return function (object) {
57566 if (object == null) {
57570 return object[key] === srcValue && (srcValue !== undefined || key in Object(object));
58092 function get(object, path, defaultValue) {
58093 var result = object == null ? undefined : baseGet(object, path);
58124 function hasIn(object, path) {
58125 return object != null && hasPath(object, path, baseHasIn);
58157 function keys(object) {
58158 return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object);
58527 function getValue(object, key) {
58528 return object == null ? undefined : object[key];
59205 function baseGetAllKeys(object, keysFunc, symbolsFunc) {
59206 var result = keysFunc(object);
59207 return isArray(object) ? result : arrayPush(result, symbolsFunc(object));
59280 function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) {
59281 var objIsArr = isArray(object),
59283 objTag = objIsArr ? arrayTag : getTag(object),
59291 if (isSameTag && isBuffer(object)) {
59302 …urn objIsArr || isTypedArray(object) ? equalArrays(object, other, bitmask, customizer, equalFunc, …
59306 var objIsWrapped = objIsObj && hasOwnProperty.call(object, '__wrapped__'),
59310 var objUnwrapped = objIsWrapped ? object.value() : object,
59322 return equalObjects(object, other, bitmask, customizer, equalFunc, stack);
59363 function baseKeys(object) {
59364 if (!isPrototype(object)) {
59365 return nativeKeys(object);
59370 for (var key in Object(object)) {
59371 if (hasOwnProperty.call(object, key) && key != 'constructor') {
59471 function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) {
59474 if (object.byteLength != other.byteLength || object.byteOffset != other.byteOffset) {
59478 object = object.buffer;
59482 …if (object.byteLength != other.byteLength || !equalFunc(new Uint8Array(object), new Uint8Array(oth…
59493 return eq(+object, +other);
59496 return object.name == other.name && object.message == other.message;
59503 return object == other + '';
59512 if (object.size != other.size && !isPartial) {
59517 var stacked = stack.get(object);
59525 stack.set(object, other);
59526 … var result = equalArrays(convert(object), convert(other), bitmask, customizer, equalFunc, stack);
59527 stack['delete'](object);
59532 return symbolValueOf.call(object) == symbolValueOf.call(other);
59554 function equalObjects(object, other, bitmask, customizer, equalFunc, stack) {
59556 objProps = getAllKeys(object),
59576 var stacked = stack.get(object);
59583 stack.set(object, other);
59584 stack.set(other, object);
59589 var objValue = object[key],
59593 …l ? customizer(othValue, objValue, key, other, object, stack) : customizer(objValue, othValue, key…
59606 var objCtor = object.constructor,
59609 …if (objCtor != othCtor && 'constructor' in object && 'constructor' in other && !(typeof objCtor ==…
59614 stack['delete'](object);
59627 function getAllKeys(object) {
59628 return baseGetAllKeys(object, keys, getSymbols);
59654 function getNative(object, key) {
59655 var value = getValue(object, key);
59697 var getSymbols = !nativeGetSymbols ? stubArray : function (object) {
59698 if (object == null) {
59702 object = Object(object);
59703 return arrayFilter(nativeGetSymbols(object), function (symbol) {
59704 return propertyIsEnumerable.call(object, symbol);
60171 function keys(object) {
60172 return isArrayLike(object) ? arrayLikeKeys(object) : baseKeys(object);
60631 function getValue(object, key) {
60632 return object == null ? undefined : object[key];
61229 function getNative(object, key) {
61230 var value = getValue(object, key);
73171 value: function value(object) {
73172 if (realHasInstance.call(this, object)) return true;
73174 return object && object._writableState instanceof WritableState;
73178 realHasInstance = function realHasInstance(object) {
73179 return object instanceof this;
73883 function ownKeys(object, enumerableOnly) {
73884 var keys = Object.keys(object);
73887 var symbols = Object.getOwnPropertySymbols(object);
73889 return Object.getOwnPropertyDescriptor(object, sym).enumerable;
74961 exports.keys = function (object) {
74964 for (var key in object) {
74975 if (key in object) {
80645 value: function value(object) {
80646 if (realHasInstance.call(this, object)) return true;
80648 return object && object._writableState instanceof WritableState;
80652 realHasInstance = function realHasInstance(object) {
80653 return object instanceof this;