is-object.mjs 146 Bytes
function isObject(value) {
    return typeof value === "object" && value !== null;
}

export { isObject };
//# sourceMappingURL=is-object.mjs.map