mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
35 lines
535 B
JavaScript
35 lines
535 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;
|