"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isObject = void 0; /** * Determines if a given value is an instance of object. */ function isObject(value) { return Object.prototype.toString.call(value) === '[object Object]'; } exports.isObject = isObject; //# sourceMappingURL=isObject.js.map