mirror of
https://github.com/rjNemo/federation
synced 2026-06-08 19:26:40 +00:00
14 lines
No EOL
350 B
JavaScript
14 lines
No EOL
350 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
|
|
function isEmptyObject(obj) {
|
|
if (!obj) {
|
|
return true;
|
|
}
|
|
for (var key in obj) {
|
|
if (Object.hasOwnProperty.call(obj, key)) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
exports.default = isEmptyObject;
|
|
//# sourceMappingURL=isEmptyObject.js.map
|