UNPKG

@n3okill/utils

Version:
13 lines 359 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isEmpty = isEmpty; const isObject_1 = require("../type/isObject"); /** * Check if an object is empty * @param arg * @returns {boolean} */ function isEmpty(arg) { return (0, isObject_1.isObject)(arg) && !Object.keys(arg).length; } //# sourceMappingURL=isEmpty.js.map