mirror of
https://github.com/azure/login.git
synced 2026-06-06 18:17:07 +00:00
* Bump lodash from 4.17.15 to 4.17.19 (#52) Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](https://github.com/lodash/lodash/compare/4.17.15...4.17.19) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * Bump @actions/core from 1.1.3 to 1.2.6 (#60) Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.1.3 to 1.2.6. - [Release notes](https://github.com/actions/toolkit/releases) - [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md) - [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amruta Kawade <65217380+AmrutaKawade@users.noreply.github.com> * updating node_nodules * updated package-lock Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
96 lines
2.8 KiB
JavaScript
96 lines
2.8 KiB
JavaScript
var traverse = require('../../');
|
|
|
|
module.exports = function (a, b) {
|
|
if (arguments.length !== 2) {
|
|
throw new Error(
|
|
'deepEqual requires exactly two objects to compare against'
|
|
);
|
|
}
|
|
|
|
var equal = true;
|
|
var node = b;
|
|
|
|
traverse(a).forEach(function (y) {
|
|
var notEqual = (function () {
|
|
equal = false;
|
|
//this.stop();
|
|
return undefined;
|
|
}).bind(this);
|
|
|
|
//if (node === undefined || node === null) return notEqual();
|
|
|
|
if (!this.isRoot) {
|
|
/*
|
|
if (!Object.hasOwnProperty.call(node, this.key)) {
|
|
return notEqual();
|
|
}
|
|
*/
|
|
if (typeof node !== 'object') return notEqual();
|
|
node = node[this.key];
|
|
}
|
|
|
|
var x = node;
|
|
|
|
this.post(function () {
|
|
node = x;
|
|
});
|
|
|
|
var toS = function (o) {
|
|
return Object.prototype.toString.call(o);
|
|
};
|
|
|
|
if (this.circular) {
|
|
if (traverse(b).get(this.circular.path) !== x) notEqual();
|
|
}
|
|
else if (typeof x !== typeof y) {
|
|
notEqual();
|
|
}
|
|
else if (x === null || y === null || x === undefined || y === undefined) {
|
|
if (x !== y) notEqual();
|
|
}
|
|
else if (x.__proto__ !== y.__proto__) {
|
|
notEqual();
|
|
}
|
|
else if (x === y) {
|
|
// nop
|
|
}
|
|
else if (typeof x === 'function') {
|
|
if (x instanceof RegExp) {
|
|
// both regexps on account of the __proto__ check
|
|
if (x.toString() != y.toString()) notEqual();
|
|
}
|
|
else if (x !== y) notEqual();
|
|
}
|
|
else if (typeof x === 'object') {
|
|
if (toS(y) === '[object Arguments]'
|
|
|| toS(x) === '[object Arguments]') {
|
|
if (toS(x) !== toS(y)) {
|
|
notEqual();
|
|
}
|
|
}
|
|
else if (toS(y) === '[object RegExp]'
|
|
|| toS(x) === '[object RegExp]') {
|
|
if (!x || !y || x.toString() !== y.toString()) notEqual();
|
|
}
|
|
else if (x instanceof Date || y instanceof Date) {
|
|
if (!(x instanceof Date) || !(y instanceof Date)
|
|
|| x.getTime() !== y.getTime()) {
|
|
notEqual();
|
|
}
|
|
}
|
|
else {
|
|
var kx = Object.keys(x);
|
|
var ky = Object.keys(y);
|
|
if (kx.length !== ky.length) return notEqual();
|
|
for (var i = 0; i < kx.length; i++) {
|
|
var k = kx[i];
|
|
if (!Object.hasOwnProperty.call(y, k)) {
|
|
notEqual();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
return equal;
|
|
};
|