UNPKG

rx-store-core

Version:

A Rxjs and Immutable based Type-safe state management tool

9 lines (8 loc) 271 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isObject = void 0; var isObject = function (value) { var type = typeof value; return value != null && (type === "object" || type === "function"); }; exports.isObject = isObject;