zents
Version:
ZenTS is a Node.js & TypeScript MVC-Framework for building rich web applications, released as free and open-source software under the MIT License. It is designed for building web applications with modern tools and design patterns.
12 lines • 360 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isObject = void 0;
function isObject(value) {
if (value === null || Array.isArray(value)) {
return false;
}
const type = typeof value;
return type === 'object' || type === 'function';
}
exports.isObject = isObject;
//# sourceMappingURL=isObject.js.map