fast-equals 1.6.3 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BUILD.md +37 -0
- package/CHANGELOG.md +38 -0
- package/README.md +87 -106
- package/dist/fast-equals.cjs.js +291 -446
- package/dist/fast-equals.cjs.js.map +1 -1
- package/dist/fast-equals.esm.js +291 -446
- package/dist/fast-equals.esm.js.map +1 -1
- package/dist/fast-equals.js +295 -450
- package/dist/fast-equals.js.map +1 -1
- package/dist/fast-equals.min.js +1 -1
- package/dist/fast-equals.mjs +294 -0
- package/dist/fast-equals.mjs.map +1 -0
- package/index.d.ts +15 -14
- package/package.json +44 -63
- package/es/comparator.js +0 -86
- package/es/constants.js +0 -14
- package/es/index.js +0 -19
- package/es/utils.js +0 -333
- package/es-to-mjs.js +0 -14
- package/lib/comparator.js +0 -94
- package/lib/constants.js +0 -22
- package/lib/index.js +0 -36
- package/lib/utils.js +0 -386
- package/mjs/comparator.mjs +0 -86
- package/mjs/constants.mjs +0 -14
- package/mjs/index.mjs +0 -19
- package/mjs/utils.mjs +0 -333
- package/rollup.config.js +0 -55
- package/yarn-error.log +0 -8175
package/dist/fast-equals.esm.js
CHANGED
|
@@ -1,449 +1,294 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
* @
|
|
7
|
-
|
|
1
|
+
var HAS_WEAKSET_SUPPORT = typeof WeakSet === 'function';
|
|
2
|
+
var keys = Object.keys;
|
|
3
|
+
/**
|
|
4
|
+
* are the values passed strictly equal or both NaN
|
|
5
|
+
*
|
|
6
|
+
* @param a the value to compare against
|
|
7
|
+
* @param b the value to test
|
|
8
|
+
* @returns are the values equal by the SameValueZero principle
|
|
9
|
+
*/
|
|
10
|
+
function sameValueZeroEqual(a, b) {
|
|
11
|
+
return a === b || (a !== a && b !== b);
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* is the value a plain object
|
|
15
|
+
*
|
|
16
|
+
* @param value the value to test
|
|
17
|
+
* @returns is the value a plain object
|
|
18
|
+
*/
|
|
19
|
+
function isPlainObject(value) {
|
|
20
|
+
return value.constructor === Object || value.constructor == null;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* is the value promise-like (meaning it is thenable)
|
|
24
|
+
*
|
|
25
|
+
* @param value the value to test
|
|
26
|
+
* @returns is the value promise-like
|
|
27
|
+
*/
|
|
28
|
+
function isPromiseLike(value) {
|
|
29
|
+
return !!value && typeof value.then === 'function';
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* is the value passed a react element
|
|
33
|
+
*
|
|
34
|
+
* @param value the value to test
|
|
35
|
+
* @returns is the value a react element
|
|
36
|
+
*/
|
|
37
|
+
function isReactElement(value) {
|
|
38
|
+
return !!(value && value.$$typeof);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* in cases where WeakSet is not supported, creates a new custom
|
|
42
|
+
* object that mimics the necessary API aspects for cache purposes
|
|
43
|
+
*
|
|
44
|
+
* @returns the new cache object
|
|
45
|
+
*/
|
|
46
|
+
function getNewCacheFallback() {
|
|
47
|
+
var values = [];
|
|
48
|
+
return {
|
|
49
|
+
add: function (value) {
|
|
50
|
+
values.push(value);
|
|
51
|
+
},
|
|
52
|
+
has: function (value) {
|
|
53
|
+
return values.indexOf(value) !== -1;
|
|
54
|
+
},
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* get a new cache object to prevent circular references
|
|
59
|
+
*
|
|
60
|
+
* @returns the new cache object
|
|
61
|
+
*/
|
|
62
|
+
var getNewCache = (function (canUseWeakMap) {
|
|
63
|
+
if (canUseWeakMap) {
|
|
64
|
+
return function _getNewCache() {
|
|
65
|
+
return new WeakSet();
|
|
66
|
+
};
|
|
67
|
+
}
|
|
68
|
+
return getNewCacheFallback;
|
|
69
|
+
})(HAS_WEAKSET_SUPPORT);
|
|
70
|
+
/**
|
|
71
|
+
* create a custom isEqual handler specific to circular objects
|
|
72
|
+
*
|
|
73
|
+
* @param [isEqual] the isEqual comparator to use instead of isDeepEqual
|
|
74
|
+
* @returns the method to create the `isEqual` function
|
|
75
|
+
*/
|
|
76
|
+
function createCircularEqualCreator(isEqual) {
|
|
77
|
+
return function createCircularEqual(comparator) {
|
|
78
|
+
var _comparator = isEqual || comparator;
|
|
79
|
+
return function circularEqual(a, b, cache) {
|
|
80
|
+
if (cache === void 0) { cache = getNewCache(); }
|
|
81
|
+
var isCacheableA = !!a && typeof a === 'object';
|
|
82
|
+
var isCacheableB = !!b && typeof b === 'object';
|
|
83
|
+
if (isCacheableA || isCacheableB) {
|
|
84
|
+
var hasA = isCacheableA && cache.has(a);
|
|
85
|
+
var hasB = isCacheableB && cache.has(b);
|
|
86
|
+
if (hasA || hasB) {
|
|
87
|
+
return hasA && hasB;
|
|
88
|
+
}
|
|
89
|
+
if (isCacheableA) {
|
|
90
|
+
cache.add(a);
|
|
91
|
+
}
|
|
92
|
+
if (isCacheableB) {
|
|
93
|
+
cache.add(b);
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
return _comparator(a, b, cache);
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* are the arrays equal in value
|
|
102
|
+
*
|
|
103
|
+
* @param a the array to test
|
|
104
|
+
* @param b the array to test against
|
|
105
|
+
* @param isEqual the comparator to determine equality
|
|
106
|
+
* @param meta the meta object to pass through
|
|
107
|
+
* @returns are the arrays equal
|
|
108
|
+
*/
|
|
109
|
+
function areArraysEqual(a, b, isEqual, meta) {
|
|
110
|
+
var index = a.length;
|
|
111
|
+
if (b.length !== index) {
|
|
112
|
+
return false;
|
|
113
|
+
}
|
|
114
|
+
while (index-- > 0) {
|
|
115
|
+
if (!isEqual(a[index], b[index], meta)) {
|
|
116
|
+
return false;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
return true;
|
|
120
|
+
}
|
|
121
|
+
/**
|
|
122
|
+
* are the maps equal in value
|
|
123
|
+
*
|
|
124
|
+
* @param a the map to test
|
|
125
|
+
* @param b the map to test against
|
|
126
|
+
* @param isEqual the comparator to determine equality
|
|
127
|
+
* @param meta the meta map to pass through
|
|
128
|
+
* @returns are the maps equal
|
|
129
|
+
*/
|
|
130
|
+
function areMapsEqual(a, b, isEqual, meta) {
|
|
131
|
+
var isValueEqual = a.size === b.size;
|
|
132
|
+
if (isValueEqual && a.size) {
|
|
133
|
+
a.forEach(function (aValue, aKey) {
|
|
134
|
+
if (isValueEqual) {
|
|
135
|
+
isValueEqual = false;
|
|
136
|
+
b.forEach(function (bValue, bKey) {
|
|
137
|
+
if (!isValueEqual && isEqual(aKey, bKey, meta)) {
|
|
138
|
+
isValueEqual = isEqual(aValue, bValue, meta);
|
|
139
|
+
}
|
|
140
|
+
});
|
|
141
|
+
}
|
|
142
|
+
});
|
|
143
|
+
}
|
|
144
|
+
return isValueEqual;
|
|
145
|
+
}
|
|
146
|
+
var OWNER = '_owner';
|
|
147
|
+
var hasOwnProperty = Function.prototype.bind.call(Function.prototype.call, Object.prototype.hasOwnProperty);
|
|
148
|
+
/**
|
|
149
|
+
* are the objects equal in value
|
|
150
|
+
*
|
|
151
|
+
* @param a the object to test
|
|
152
|
+
* @param b the object to test against
|
|
153
|
+
* @param isEqual the comparator to determine equality
|
|
154
|
+
* @param meta the meta object to pass through
|
|
155
|
+
* @returns are the objects equal
|
|
156
|
+
*/
|
|
157
|
+
function areObjectsEqual(a, b, isEqual, meta) {
|
|
158
|
+
var keysA = keys(a);
|
|
159
|
+
var index = keysA.length;
|
|
160
|
+
if (keys(b).length !== index) {
|
|
161
|
+
return false;
|
|
162
|
+
}
|
|
163
|
+
if (index) {
|
|
164
|
+
var key = void 0;
|
|
165
|
+
while (index-- > 0) {
|
|
166
|
+
key = keysA[index];
|
|
167
|
+
if (key === OWNER) {
|
|
168
|
+
var reactElementA = isReactElement(a);
|
|
169
|
+
var reactElementB = isReactElement(b);
|
|
170
|
+
if ((reactElementA || reactElementB) &&
|
|
171
|
+
reactElementA !== reactElementB) {
|
|
172
|
+
return false;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
if (!hasOwnProperty(b, key) || !isEqual(a[key], b[key], meta)) {
|
|
176
|
+
return false;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
return true;
|
|
181
|
+
}
|
|
182
|
+
/**
|
|
183
|
+
* are the regExps equal in value
|
|
184
|
+
*
|
|
185
|
+
* @param a the regExp to test
|
|
186
|
+
* @param b the regExp to test agains
|
|
187
|
+
* @returns are the regExps equal
|
|
188
|
+
*/
|
|
189
|
+
function areRegExpsEqual(a, b) {
|
|
190
|
+
return (a.source === b.source &&
|
|
191
|
+
a.global === b.global &&
|
|
192
|
+
a.ignoreCase === b.ignoreCase &&
|
|
193
|
+
a.multiline === b.multiline &&
|
|
194
|
+
a.unicode === b.unicode &&
|
|
195
|
+
a.sticky === b.sticky &&
|
|
196
|
+
a.lastIndex === b.lastIndex);
|
|
197
|
+
}
|
|
198
|
+
/**
|
|
199
|
+
* are the sets equal in value
|
|
200
|
+
*
|
|
201
|
+
* @param a the set to test
|
|
202
|
+
* @param b the set to test against
|
|
203
|
+
* @param isEqual the comparator to determine equality
|
|
204
|
+
* @param meta the meta set to pass through
|
|
205
|
+
* @returns are the sets equal
|
|
206
|
+
*/
|
|
207
|
+
function areSetsEqual(a, b, isEqual, meta) {
|
|
208
|
+
var isValueEqual = a.size === b.size;
|
|
209
|
+
if (isValueEqual && a.size) {
|
|
210
|
+
a.forEach(function (aValue) {
|
|
211
|
+
if (isValueEqual) {
|
|
212
|
+
isValueEqual = false;
|
|
213
|
+
b.forEach(function (bValue) {
|
|
214
|
+
if (!isValueEqual) {
|
|
215
|
+
isValueEqual = isEqual(aValue, bValue, meta);
|
|
216
|
+
}
|
|
217
|
+
});
|
|
218
|
+
}
|
|
219
|
+
});
|
|
220
|
+
}
|
|
221
|
+
return isValueEqual;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
var HAS_MAP_SUPPORT = typeof Map === 'function';
|
|
225
|
+
var HAS_SET_SUPPORT = typeof Set === 'function';
|
|
226
|
+
function createComparator(createIsEqual) {
|
|
227
|
+
var isEqual =
|
|
228
|
+
/* eslint-disable no-use-before-define */
|
|
229
|
+
typeof createIsEqual === 'function'
|
|
230
|
+
? createIsEqual(comparator)
|
|
231
|
+
: comparator;
|
|
232
|
+
/* eslint-enable */
|
|
233
|
+
/**
|
|
234
|
+
* compare the value of the two objects and return true if they are equivalent in values
|
|
235
|
+
*
|
|
236
|
+
* @param a the value to test against
|
|
237
|
+
* @param b the value to test
|
|
238
|
+
* @param [meta] an optional meta object that is passed through to all equality test calls
|
|
239
|
+
* @returns are a and b equivalent in value
|
|
240
|
+
*/
|
|
241
|
+
function comparator(a, b, meta) {
|
|
242
|
+
if (a === b) {
|
|
243
|
+
return true;
|
|
244
|
+
}
|
|
245
|
+
if (a && b && typeof a === 'object' && typeof b === 'object') {
|
|
246
|
+
if (isPlainObject(a) && isPlainObject(b)) {
|
|
247
|
+
return areObjectsEqual(a, b, isEqual, meta);
|
|
248
|
+
}
|
|
249
|
+
var aShape = Array.isArray(a);
|
|
250
|
+
var bShape = Array.isArray(b);
|
|
251
|
+
if (aShape || bShape) {
|
|
252
|
+
return aShape === bShape && areArraysEqual(a, b, isEqual, meta);
|
|
253
|
+
}
|
|
254
|
+
aShape = a instanceof Date;
|
|
255
|
+
bShape = b instanceof Date;
|
|
256
|
+
if (aShape || bShape) {
|
|
257
|
+
return (aShape === bShape && sameValueZeroEqual(a.getTime(), b.getTime()));
|
|
258
|
+
}
|
|
259
|
+
aShape = a instanceof RegExp;
|
|
260
|
+
bShape = b instanceof RegExp;
|
|
261
|
+
if (aShape || bShape) {
|
|
262
|
+
return aShape === bShape && areRegExpsEqual(a, b);
|
|
263
|
+
}
|
|
264
|
+
if (isPromiseLike(a) || isPromiseLike(b)) {
|
|
265
|
+
return a === b;
|
|
266
|
+
}
|
|
267
|
+
if (HAS_MAP_SUPPORT) {
|
|
268
|
+
aShape = a instanceof Map;
|
|
269
|
+
bShape = b instanceof Map;
|
|
270
|
+
if (aShape || bShape) {
|
|
271
|
+
return aShape === bShape && areMapsEqual(a, b, isEqual, meta);
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
if (HAS_SET_SUPPORT) {
|
|
275
|
+
aShape = a instanceof Set;
|
|
276
|
+
bShape = b instanceof Set;
|
|
277
|
+
if (aShape || bShape) {
|
|
278
|
+
return aShape === bShape && areSetsEqual(a, b, isEqual, meta);
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
return areObjectsEqual(a, b, isEqual, meta);
|
|
282
|
+
}
|
|
283
|
+
return a !== a && b !== b;
|
|
284
|
+
}
|
|
285
|
+
return comparator;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
var deepEqual = createComparator();
|
|
289
|
+
var shallowEqual = createComparator(function () { return sameValueZeroEqual; });
|
|
290
|
+
var circularDeepEqual = createComparator(createCircularEqualCreator());
|
|
291
|
+
var circularShallowEqual = createComparator(createCircularEqualCreator(sameValueZeroEqual));
|
|
8
292
|
|
|
9
|
-
var HAS_SET_SUPPORT = typeof Set === 'function';
|
|
10
|
-
/**
|
|
11
|
-
* @constant {boolean} HAS_WEAKSET_SUPPORT
|
|
12
|
-
*/
|
|
13
|
-
|
|
14
|
-
var HAS_WEAKSET_SUPPORT = typeof WeakSet === 'function';
|
|
15
|
-
|
|
16
|
-
// constants
|
|
17
|
-
var keys = Object.keys;
|
|
18
|
-
/**
|
|
19
|
-
* @function addObjectToCache
|
|
20
|
-
*
|
|
21
|
-
* @description
|
|
22
|
-
* add object to cache if it is indeed an object
|
|
23
|
-
*
|
|
24
|
-
* @param {any} object the object to potentially add to the cache
|
|
25
|
-
* @param {Object|WeakSet} cache the cache to add to
|
|
26
|
-
* @returns {void}
|
|
27
|
-
*/
|
|
28
|
-
|
|
29
|
-
var addObjectToCache = function addObjectToCache(object, cache) {
|
|
30
|
-
return object && typeof object === 'object' && cache.add(object);
|
|
31
|
-
};
|
|
32
|
-
/**
|
|
33
|
-
*
|
|
34
|
-
* @param {Array<Array<any>>} pairs the pairs to check in
|
|
35
|
-
* @param {Array<any>} pairToMatch the pair to check if exists
|
|
36
|
-
* @param {function} isEqual the equality comparator
|
|
37
|
-
* @param {any} meta the meta item to pass through
|
|
38
|
-
* @returns {boolean} does the pair exist in the pairs
|
|
39
|
-
*/
|
|
40
|
-
|
|
41
|
-
var hasPair = function hasPair(pairs, pairToMatch, isEqual, meta) {
|
|
42
|
-
var pair;
|
|
43
|
-
|
|
44
|
-
for (var index = 0; index < pairs.length; index++) {
|
|
45
|
-
pair = pairs[index];
|
|
46
|
-
|
|
47
|
-
if (isEqual(pair[0], pairToMatch[0], meta) && isEqual(pair[1], pairToMatch[1], meta)) {
|
|
48
|
-
return true;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
return false;
|
|
53
|
-
};
|
|
54
|
-
/**
|
|
55
|
-
* @function hasValue
|
|
56
|
-
*
|
|
57
|
-
* @description
|
|
58
|
-
* does the values include the vakye passed
|
|
59
|
-
*
|
|
60
|
-
* @param {Array<any>} values the values to check in
|
|
61
|
-
* @param {any} item the value to locate
|
|
62
|
-
* @param {function} isEqual the equality comparator
|
|
63
|
-
* @param {any} meta the meta item to pass through
|
|
64
|
-
* @returns {boolean} does the value exist in the values
|
|
65
|
-
*/
|
|
66
|
-
|
|
67
|
-
var hasValue = function hasValue(values, item, isEqual, meta) {
|
|
68
|
-
for (var index = 0; index < values.length; index++) {
|
|
69
|
-
if (isEqual(values[index], item, meta)) {
|
|
70
|
-
return true;
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
return false;
|
|
75
|
-
};
|
|
76
|
-
/**
|
|
77
|
-
* @function sameValueZeroEqual
|
|
78
|
-
*
|
|
79
|
-
* @description
|
|
80
|
-
* are the objects passed strictly equal or both NaN
|
|
81
|
-
*
|
|
82
|
-
* @param {any} objectA the object to compare against
|
|
83
|
-
* @param {any} objectB the object to test
|
|
84
|
-
* @returns {boolean} are the objects equal by the SameValueZero principle
|
|
85
|
-
*/
|
|
86
|
-
|
|
87
|
-
var sameValueZeroEqual = function sameValueZeroEqual(objectA, objectB) {
|
|
88
|
-
return objectA === objectB || objectA !== objectA && objectB !== objectB;
|
|
89
|
-
};
|
|
90
|
-
/**
|
|
91
|
-
* @function isPlainObject
|
|
92
|
-
*
|
|
93
|
-
* @description
|
|
94
|
-
* is the object a plain object
|
|
95
|
-
*
|
|
96
|
-
* @param {any} object the object to test
|
|
97
|
-
* @returns {boolean} is the object a plain object
|
|
98
|
-
*/
|
|
99
|
-
|
|
100
|
-
var isPlainObject = function isPlainObject(object) {
|
|
101
|
-
return object.constructor === Object;
|
|
102
|
-
};
|
|
103
|
-
/**
|
|
104
|
-
* @function isPromiseLike
|
|
105
|
-
*
|
|
106
|
-
* @description
|
|
107
|
-
* is the object promise-like (thenable)
|
|
108
|
-
*
|
|
109
|
-
* @param {any} object the object to test
|
|
110
|
-
* @returns {boolean} is the object promise-like
|
|
111
|
-
*/
|
|
112
|
-
|
|
113
|
-
var isPromiseLike = function isPromiseLike(object) {
|
|
114
|
-
return typeof object.then === 'function';
|
|
115
|
-
};
|
|
116
|
-
/**
|
|
117
|
-
* @function isReactElement
|
|
118
|
-
*
|
|
119
|
-
* @description
|
|
120
|
-
* is the object passed a react element
|
|
121
|
-
*
|
|
122
|
-
* @param {any} object the object to test
|
|
123
|
-
* @returns {boolean} is the object a react element
|
|
124
|
-
*/
|
|
125
|
-
|
|
126
|
-
var isReactElement = function isReactElement(object) {
|
|
127
|
-
return !!(object.$$typeof && object._store);
|
|
128
|
-
};
|
|
129
|
-
/**
|
|
130
|
-
* @function getNewCache
|
|
131
|
-
*
|
|
132
|
-
* @description
|
|
133
|
-
* get a new cache object to prevent circular references
|
|
134
|
-
*
|
|
135
|
-
* @returns {Object|Weakset} the new cache object
|
|
136
|
-
*/
|
|
137
|
-
|
|
138
|
-
var getNewCache = function getNewCache() {
|
|
139
|
-
return HAS_WEAKSET_SUPPORT ? new WeakSet() : Object.create({
|
|
140
|
-
_values: [],
|
|
141
|
-
add: function add(value) {
|
|
142
|
-
this._values.push(value);
|
|
143
|
-
},
|
|
144
|
-
has: function has(value) {
|
|
145
|
-
return !!~this._values.indexOf(value);
|
|
146
|
-
}
|
|
147
|
-
});
|
|
148
|
-
};
|
|
149
|
-
/**
|
|
150
|
-
* @function createCircularEqual
|
|
151
|
-
*
|
|
152
|
-
* @description
|
|
153
|
-
* create a custom isEqual handler specific to circular objects
|
|
154
|
-
*
|
|
155
|
-
* @param {funtion} [isEqual] the isEqual comparator to use instead of isDeepEqual
|
|
156
|
-
* @returns {function(any, any): boolean}
|
|
157
|
-
*/
|
|
158
|
-
|
|
159
|
-
var createCircularEqual = function createCircularEqual(isEqual) {
|
|
160
|
-
return function (isDeepEqual) {
|
|
161
|
-
var comparator = isEqual || isDeepEqual;
|
|
162
|
-
return function (objectA, objectB, cache) {
|
|
163
|
-
if (cache === void 0) {
|
|
164
|
-
cache = getNewCache();
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
var cacheHasA = cache.has(objectA);
|
|
168
|
-
var cacheHasB = cache.has(objectB);
|
|
169
|
-
|
|
170
|
-
if (cacheHasA || cacheHasB) {
|
|
171
|
-
return cacheHasA && cacheHasB;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
addObjectToCache(objectA, cache);
|
|
175
|
-
addObjectToCache(objectB, cache);
|
|
176
|
-
return comparator(objectA, objectB, cache);
|
|
177
|
-
};
|
|
178
|
-
};
|
|
179
|
-
};
|
|
180
|
-
/**
|
|
181
|
-
* @function toPairs
|
|
182
|
-
*
|
|
183
|
-
* @param {Map} map the map to convert to [key, value] pairs (entries)
|
|
184
|
-
* @returns {Array<Array<*>>} the [key, value] pairs
|
|
185
|
-
*/
|
|
186
|
-
|
|
187
|
-
var toPairs = function toPairs(map) {
|
|
188
|
-
var pairs = [];
|
|
189
|
-
map.forEach(function (value, key) {
|
|
190
|
-
return pairs.push([key, value]);
|
|
191
|
-
});
|
|
192
|
-
return pairs;
|
|
193
|
-
};
|
|
194
|
-
/**
|
|
195
|
-
* @function toValues
|
|
196
|
-
*
|
|
197
|
-
* @param {Set} set the set to convert to values
|
|
198
|
-
* @returns {Array<*>} the values
|
|
199
|
-
*/
|
|
200
|
-
|
|
201
|
-
var toValues = function toValues(set) {
|
|
202
|
-
var values = [];
|
|
203
|
-
set.forEach(function (value) {
|
|
204
|
-
return values.push(value);
|
|
205
|
-
});
|
|
206
|
-
return values;
|
|
207
|
-
};
|
|
208
|
-
/**
|
|
209
|
-
* @function areArraysEqual
|
|
210
|
-
*
|
|
211
|
-
* @description
|
|
212
|
-
* are the arrays equal in value
|
|
213
|
-
*
|
|
214
|
-
* @param {Array<any>} arrayA the array to test
|
|
215
|
-
* @param {Array<any>} arrayB the array to test against
|
|
216
|
-
* @param {function} isEqual the comparator to determine equality
|
|
217
|
-
* @param {any} meta the meta object to pass through
|
|
218
|
-
* @returns {boolean} are the arrays equal
|
|
219
|
-
*/
|
|
220
|
-
|
|
221
|
-
var areArraysEqual = function areArraysEqual(arrayA, arrayB, isEqual, meta) {
|
|
222
|
-
if (arrayA.length !== arrayB.length) {
|
|
223
|
-
return false;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
for (var index = 0; index < arrayA.length; index++) {
|
|
227
|
-
if (!isEqual(arrayA[index], arrayB[index], meta)) {
|
|
228
|
-
return false;
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
|
|
232
|
-
return true;
|
|
233
|
-
};
|
|
234
|
-
/**
|
|
235
|
-
* @function areMapsEqual
|
|
236
|
-
*
|
|
237
|
-
* @description
|
|
238
|
-
* are the maps equal in value
|
|
239
|
-
*
|
|
240
|
-
* @param {Map} mapA the map to test
|
|
241
|
-
* @param {Map} mapB the map to test against
|
|
242
|
-
* @param {function} isEqual the comparator to determine equality
|
|
243
|
-
* @param {any} meta the meta map to pass through
|
|
244
|
-
* @returns {boolean} are the maps equal
|
|
245
|
-
*/
|
|
246
|
-
|
|
247
|
-
var areMapsEqual = function areMapsEqual(mapA, mapB, isEqual, meta) {
|
|
248
|
-
if (mapA.size !== mapB.size) {
|
|
249
|
-
return false;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
var pairsA = toPairs(mapA);
|
|
253
|
-
var pairsB = toPairs(mapB);
|
|
254
|
-
|
|
255
|
-
for (var index = 0; index < pairsA.length; index++) {
|
|
256
|
-
if (!hasPair(pairsB, pairsA[index], isEqual, meta) || !hasPair(pairsA, pairsB[index], isEqual, meta)) {
|
|
257
|
-
return false;
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
return true;
|
|
262
|
-
};
|
|
263
|
-
/**
|
|
264
|
-
* @function areObjectsEqual
|
|
265
|
-
*
|
|
266
|
-
* @description
|
|
267
|
-
* are the objects equal in value
|
|
268
|
-
*
|
|
269
|
-
* @param {Object} objectA the object to test
|
|
270
|
-
* @param {Object} objectB the object to test against
|
|
271
|
-
* @param {function} isEqual the comparator to determine equality
|
|
272
|
-
* @param {any} meta the meta object to pass through
|
|
273
|
-
* @returns {boolean} are the objects equal
|
|
274
|
-
*/
|
|
275
|
-
|
|
276
|
-
var areObjectsEqual = function areObjectsEqual(objectA, objectB, isEqual, meta) {
|
|
277
|
-
var keysA = keys(objectA);
|
|
278
|
-
var keysB = keys(objectB);
|
|
279
|
-
|
|
280
|
-
if (keysA.length !== keysB.length) {
|
|
281
|
-
return false;
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
var key;
|
|
285
|
-
|
|
286
|
-
for (var index = 0; index < keysA.length; index++) {
|
|
287
|
-
key = keysA[index];
|
|
288
|
-
|
|
289
|
-
if (!hasValue(keysB, key, sameValueZeroEqual)) {
|
|
290
|
-
return false;
|
|
291
|
-
} // if a react element, ignore the "_owner" key because its not necessary for equality comparisons
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
if (key === '_owner' && isReactElement(objectA) && isReactElement(objectB)) {
|
|
295
|
-
continue;
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
if (!isEqual(objectA[key], objectB[key], meta)) {
|
|
299
|
-
return false;
|
|
300
|
-
}
|
|
301
|
-
}
|
|
302
|
-
|
|
303
|
-
return true;
|
|
304
|
-
};
|
|
305
|
-
/**
|
|
306
|
-
* @function areRegExpsEqual
|
|
307
|
-
*
|
|
308
|
-
* @description
|
|
309
|
-
* are the regExps equal in value
|
|
310
|
-
*
|
|
311
|
-
* @param {RegExp} regExpA the regExp to test
|
|
312
|
-
* @param {RegExp} regExpB the regExp to test agains
|
|
313
|
-
* @returns {boolean} are the regExps equal
|
|
314
|
-
*/
|
|
315
|
-
|
|
316
|
-
var areRegExpsEqual = function areRegExpsEqual(regExpA, regExpB) {
|
|
317
|
-
return regExpA.source === regExpB.source && regExpA.global === regExpB.global && regExpA.ignoreCase === regExpB.ignoreCase && regExpA.multiline === regExpB.multiline && regExpA.unicode === regExpB.unicode && regExpA.sticky === regExpB.sticky && regExpA.lastIndex === regExpB.lastIndex;
|
|
318
|
-
};
|
|
319
|
-
/**
|
|
320
|
-
* @function areSetsEqual
|
|
321
|
-
*
|
|
322
|
-
* @description
|
|
323
|
-
* are the sets equal in value
|
|
324
|
-
*
|
|
325
|
-
* @param {Set} setA the set to test
|
|
326
|
-
* @param {Set} setB the set to test against
|
|
327
|
-
* @param {function} isEqual the comparator to determine equality
|
|
328
|
-
* @param {any} meta the meta set to pass through
|
|
329
|
-
* @returns {boolean} are the sets equal
|
|
330
|
-
*/
|
|
331
|
-
|
|
332
|
-
var areSetsEqual = function areSetsEqual(setA, setB, isEqual, meta) {
|
|
333
|
-
if (setA.size !== setB.size) {
|
|
334
|
-
return false;
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
var valuesA = toValues(setA);
|
|
338
|
-
var valuesB = toValues(setB);
|
|
339
|
-
|
|
340
|
-
for (var index = 0; index < valuesA.length; index++) {
|
|
341
|
-
if (!hasValue(valuesB, valuesA[index], isEqual, meta) || !hasValue(valuesA, valuesB[index], isEqual, meta)) {
|
|
342
|
-
return false;
|
|
343
|
-
}
|
|
344
|
-
}
|
|
345
|
-
|
|
346
|
-
return true;
|
|
347
|
-
};
|
|
348
|
-
|
|
349
|
-
// constants
|
|
350
|
-
var isArray = Array.isArray;
|
|
351
|
-
|
|
352
|
-
var createComparator = function createComparator(createIsEqual) {
|
|
353
|
-
// eslint-disable-next-line no-use-before-define
|
|
354
|
-
var isEqual = typeof createIsEqual === 'function' ? createIsEqual(comparator) : comparator;
|
|
355
|
-
/**
|
|
356
|
-
* @function comparator
|
|
357
|
-
*
|
|
358
|
-
* @description
|
|
359
|
-
* compare the value of the two objects and return true if they are equivalent in values
|
|
360
|
-
*
|
|
361
|
-
* @param {any} objectA the object to test against
|
|
362
|
-
* @param {any} objectB the object to test
|
|
363
|
-
* @param {any} [meta] an optional meta object that is passed through to all equality test calls
|
|
364
|
-
* @returns {boolean} are objectA and objectB equivalent in value
|
|
365
|
-
*/
|
|
366
|
-
|
|
367
|
-
function comparator(objectA, objectB, meta) {
|
|
368
|
-
if (sameValueZeroEqual(objectA, objectB)) {
|
|
369
|
-
return true;
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
var typeOfA = typeof objectA;
|
|
373
|
-
|
|
374
|
-
if (typeOfA !== typeof objectB || typeOfA !== 'object' || !objectA || !objectB) {
|
|
375
|
-
return false;
|
|
376
|
-
}
|
|
377
|
-
|
|
378
|
-
if (isPlainObject(objectA) && isPlainObject(objectB)) {
|
|
379
|
-
return areObjectsEqual(objectA, objectB, isEqual, meta);
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
var arrayA = isArray(objectA);
|
|
383
|
-
var arrayB = isArray(objectB);
|
|
384
|
-
|
|
385
|
-
if (arrayA || arrayB) {
|
|
386
|
-
return arrayA === arrayB && areArraysEqual(objectA, objectB, isEqual, meta);
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
var dateA = objectA instanceof Date;
|
|
390
|
-
var dateB = objectB instanceof Date;
|
|
391
|
-
|
|
392
|
-
if (dateA || dateB) {
|
|
393
|
-
return dateA === dateB && sameValueZeroEqual(objectA.getTime(), objectB.getTime());
|
|
394
|
-
}
|
|
395
|
-
|
|
396
|
-
var regexpA = objectA instanceof RegExp;
|
|
397
|
-
var regexpB = objectB instanceof RegExp;
|
|
398
|
-
|
|
399
|
-
if (regexpA || regexpB) {
|
|
400
|
-
return regexpA === regexpB && areRegExpsEqual(objectA, objectB);
|
|
401
|
-
}
|
|
402
|
-
|
|
403
|
-
if (isPromiseLike(objectA) || isPromiseLike(objectB)) {
|
|
404
|
-
return objectA === objectB;
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
if (HAS_MAP_SUPPORT) {
|
|
408
|
-
var mapA = objectA instanceof Map;
|
|
409
|
-
var mapB = objectB instanceof Map;
|
|
410
|
-
|
|
411
|
-
if (mapA || mapB) {
|
|
412
|
-
return mapA === mapB && areMapsEqual(objectA, objectB, isEqual, meta);
|
|
413
|
-
}
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
if (HAS_SET_SUPPORT) {
|
|
417
|
-
var setA = objectA instanceof Set;
|
|
418
|
-
var setB = objectB instanceof Set;
|
|
419
|
-
|
|
420
|
-
if (setA || setB) {
|
|
421
|
-
return setA === setB && areSetsEqual(objectA, objectB, isEqual, meta);
|
|
422
|
-
}
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
return areObjectsEqual(objectA, objectB, isEqual, meta);
|
|
426
|
-
}
|
|
427
|
-
|
|
428
|
-
return comparator;
|
|
429
|
-
};
|
|
430
|
-
|
|
431
|
-
// comparator
|
|
432
|
-
var circularDeepEqual = createComparator(createCircularEqual());
|
|
433
|
-
var circularShallowEqual = createComparator(createCircularEqual(sameValueZeroEqual));
|
|
434
|
-
var deepEqual = createComparator();
|
|
435
|
-
var shallowEqual = createComparator(function () {
|
|
436
|
-
return sameValueZeroEqual;
|
|
437
|
-
});
|
|
438
|
-
var index = {
|
|
439
|
-
circularDeep: circularDeepEqual,
|
|
440
|
-
circularShallow: circularShallowEqual,
|
|
441
|
-
createCustom: createComparator,
|
|
442
|
-
deep: deepEqual,
|
|
443
|
-
sameValueZero: sameValueZeroEqual,
|
|
444
|
-
shallow: shallowEqual
|
|
445
|
-
};
|
|
446
|
-
|
|
447
|
-
export default index;
|
|
448
293
|
export { circularDeepEqual, circularShallowEqual, createComparator as createCustomEqual, deepEqual, sameValueZeroEqual, shallowEqual };
|
|
449
294
|
//# sourceMappingURL=fast-equals.esm.js.map
|