moltres-utils
Version:
Utils for Moltres apps
15 lines (12 loc) • 325 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
const isObject = value => {
const type = typeof value;
return value != null && (type == 'object' || type == 'function');
};
var _default = isObject;
exports.default = _default;
//# sourceMappingURL=isObject.js.map
;