UNPKG

350 BJavaScriptView Raw
1Object.defineProperty(exports, "__esModule", { value: true });
2function isEmptyObject(obj) {
3 if (!obj) {
4 return true;
5 }
6 for (var key in obj) {
7 if (Object.hasOwnProperty.call(obj, key)) {
8 return false;
9 }
10 }
11 return true;
12}
13exports.default = isEmptyObject;
14//# sourceMappingURL=isEmptyObject.js.map
\No newline at end of file