Public Access
mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-10 18:22:42 -04:00
28 lines
528 B
JavaScript
28 lines
528 B
JavaScript
"use strict";
|
|||
|
|
|
||
|
|
function isEqualLocals(a, b, isNamedExport) {
|
||
|
|
if (!a && b || a && !b) {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
var p;
|
||
|
|
for (p in a) {
|
||
|
|
if (isNamedExport && p === "default") {
|
||
|
|
// eslint-disable-next-line no-continue
|
||
|
|
continue;
|
||
|
|
}
|
||
|
|
if (a[p] !== b[p]) {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
for (p in b) {
|
||
|
|
if (isNamedExport && p === "default") {
|
||
|
|
// eslint-disable-next-line no-continue
|
||
|
|
continue;
|
||
|
|
}
|
||
|
|
if (!a[p]) {
|
||
|
|
return false;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
module.exports = isEqualLocals;
|