UNPKG

@jrc03c/js-math-tools

Version:
9 lines (6 loc) 202 B
import { isArray } from "./is-array.mjs" import { isUndefined } from "./is-undefined.mjs" function isObject(x) { return typeof x === "object" && !isUndefined(x) && !isArray(x) } export { isObject }