1234567891011 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.isEmpty = void 0;
- const isEmpty = (obj) => {
- for (const key in obj)
- if (Object.prototype.hasOwnProperty.call(obj, key))
- return false;
- return true;
- };
- exports.isEmpty = isEmpty;
- //# sourceMappingURL=isEmpty.js.map
|