"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.isObject = isObject;
/**
* A type guard for checking if a value is an object
*/functionisObject(value) {
returntypeof value === "object" && value !== null;
}
//# sourceMappingURL=isObject.js.map