Lines Matching refs:notUtilIsDeepStrict
91 function notUtilIsDeepStrict(a, b) {
101 notUtilIsDeepStrict(new Set([1, 2, 3]), new Set([1, 2, 3, 4]));
102 notUtilIsDeepStrict(new Set([1, 2, 3, 4]), new Set([1, 2, 3]));
120 notUtilIsDeepStrict(new Map([[1, 1], [2, 2]]), new Map([[1, 2], [2, 1]]));
121 notUtilIsDeepStrict(
126 notUtilIsDeepStrict(new Set([1]), [1]);
127 notUtilIsDeepStrict(new Set(), []);
128 notUtilIsDeepStrict(new Set(), {});
130 notUtilIsDeepStrict(new Map([['a', 1]]), { a: 1 });
131 notUtilIsDeepStrict(new Map(), []);
132 notUtilIsDeepStrict(new Map(), {});
134 notUtilIsDeepStrict(new Set(['1']), new Set([1]));
136 notUtilIsDeepStrict(new Map([['1', 'a']]), new Map([[1, 'a']]));
137 notUtilIsDeepStrict(new Map([['a', '1']]), new Map([['a', 1]]));
138 notUtilIsDeepStrict(new Map([['a', '1']]), new Map([['a', 2]]));
143 notUtilIsDeepStrict(
147 notUtilIsDeepStrict(
151 notUtilIsDeepStrict(
156 notUtilIsDeepStrict(new Set([3, '3']), new Set([3, 4]));
157 notUtilIsDeepStrict(new Map([[3, 0], ['3', 0]]), new Map([[3, 0], [4, 0]]));
159 notUtilIsDeepStrict(
175 notUtilIsDeepStrict(
179 notUtilIsDeepStrict(
187 notUtilIsDeepStrict(
191 notUtilIsDeepStrict(
197 notUtilIsDeepStrict(
201 notUtilIsDeepStrict(
205 notUtilIsDeepStrict(
209 notUtilIsDeepStrict(
215 notUtilIsDeepStrict(
219 notUtilIsDeepStrict(
229 notUtilIsDeepStrict(
233 notUtilIsDeepStrict(
243 notUtilIsDeepStrict(
247 notUtilIsDeepStrict(
268 notUtilIsDeepStrict(d, e);
294 notUtilIsDeepStrict([], args);
306 notUtilIsDeepStrict(someArgs, ['a']);
307 notUtilIsDeepStrict(someArgs, { '0': 'a' });
308 notUtilIsDeepStrict(someArgs, diffArgs);
366 notUtilIsDeepStrict(m1, m2);
382 notUtilIsDeepStrict(s1, s2);
387 notUtilIsDeepStrict(m1, m2);
414 notUtilIsDeepStrict([1, , , 3], [1, , , 3, , , ]);
422 notUtilIsDeepStrict(err1, err2, assert.AssertionError);
423 notUtilIsDeepStrict(err1, err3, assert.AssertionError);
424 notUtilIsDeepStrict(err1, {}, assert.AssertionError);
439 notUtilIsDeepStrict(new Boolean(true), Object(false));
440 notUtilIsDeepStrict(Object(true), new Number(1));
441 notUtilIsDeepStrict(new Number(2), new Number(1));
442 notUtilIsDeepStrict(boxedSymbol, Object(Symbol()));
443 notUtilIsDeepStrict(boxedSymbol, {});
449 notUtilIsDeepStrict(boxedString, Object('test'));
451 notUtilIsDeepStrict(boxedSymbol, {});
453 notUtilIsDeepStrict(Object(BigInt(1)), Object(BigInt(2)));
458 notUtilIsDeepStrict(booleanish, new String('true'));
463 notUtilIsDeepStrict(numberish, new String('42'));
468 notUtilIsDeepStrict(stringish, new Number(0));
473 notUtilIsDeepStrict(bigintish, new String('42'));
478 notUtilIsDeepStrict(symbolish, new String('fhqwhgads'));
482 notUtilIsDeepStrict(0, -0);
495 notUtilIsDeepStrict(obj1, obj3);
497 notUtilIsDeepStrict(obj1, obj4);
503 notUtilIsDeepStrict(a, b);
510 notUtilIsDeepStrict(boxedStringA, boxedStringB);