26 lines
536 B
Plaintext
26 lines
536 B
Plaintext
function isEqualLocals(a, b, isNamedExport) {
|
|
if (!a && b || a && !b) {
|
|
return false;
|
|
}
|
|
let p;
|
|
for(p in a){
|
|
if (isNamedExport && p === "default") {
|
|
continue;
|
|
}
|
|
if (a[p] !== b[p]) {
|
|
return false;
|
|
}
|
|
}
|
|
for(p in b){
|
|
if (isNamedExport && p === "default") {
|
|
continue;
|
|
}
|
|
if (!a[p]) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
module.exports = isEqualLocals;
|
|
|
|
//# sourceMappingURL=isEqualLocals.js.map |