UNPKG

reakit-utils

Version:

Reakit utils

11 lines (9 loc) 176 B
/** * Checks whether `arg` is an object or not. * * @returns {boolean} */ function isObject(arg) { return typeof arg === "object" && arg != null; } export { isObject };