UNPKG

topkat-utils

Version:

A comprehensive collection of TypeScript/JavaScript utility functions for common programming tasks. Includes validation, object manipulation, date handling, string formatting, and more. Zero dependencies, fully typed, and optimized for performance.

7 lines 341 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isObject = void 0; /** test if object but not array and not null (null is an object in Js) */ function isObject(o) { return o instanceof Object && [Object, Error].includes(o.constructor); } exports.isObject = isObject; //# sourceMappingURL=is-object.js.map