Lines Matching refs:utilIsDeepStrict

86 function utilIsDeepStrict(a, b) {
97 utilIsDeepStrict(new Set(), new Set());
98 utilIsDeepStrict(new Map(), new Map());
100 utilIsDeepStrict(new Set([1, 2, 3]), new Set([1, 2, 3]));
103 utilIsDeepStrict(new Set(['1', '2', '3']), new Set(['1', '2', '3']));
104 utilIsDeepStrict(new Set([[1, 2], [3, 4]]), new Set([[3, 4], [1, 2]]));
112 utilIsDeepStrict(
118 utilIsDeepStrict(new Map([[1, 1], [2, 2]]), new Map([[1, 1], [2, 2]]));
119 utilIsDeepStrict(new Map([[1, 1], [2, 2]]), new Map([[2, 2], [1, 1]]));
140 utilIsDeepStrict(new Set([{}]), new Set([{}]));
165 utilIsDeepStrict(
169 utilIsDeepStrict(
183 utilIsDeepStrict(
225 utilIsDeepStrict(
239 utilIsDeepStrict(
259 utilIsDeepStrict(b, c);
278 utilIsDeepStrict(a, b);
288 utilIsDeepStrict(b, c);
309 utilIsDeepStrict(someArgs, sameArgs);
325 utilIsDeepStrict(new Set(values), new Set(values));
326 utilIsDeepStrict(new Set(values), new Set(values.reverse()));
329 utilIsDeepStrict(new Map(mapValues), new Map(mapValues));
330 utilIsDeepStrict(new Map(mapValues), new Map(mapValues.reverse()));
340 utilIsDeepStrict(s1, s2);
355 utilIsDeepStrict(m1, m2);
396 utilIsDeepStrict(s1, s2);
402 utilIsDeepStrict(m1, m2);
408 utilIsDeepStrict(m3, m4);
413 utilIsDeepStrict([1, , , 3], [1, , , 3]);
444 utilIsDeepStrict(boxedSymbol, boxedSymbol);
445 utilIsDeepStrict(Object(true), Object(true));
446 utilIsDeepStrict(Object(2), Object(2));
447 utilIsDeepStrict(boxedString, Object('test'));
452 utilIsDeepStrict(Object(BigInt(1)), Object(BigInt(1)));
483 utilIsDeepStrict(-0, -0);
496 utilIsDeepStrict(obj1, obj2);
505 utilIsDeepStrict(a, b);
512 utilIsDeepStrict(a, b);