UNPKG

formvuelate

Version:
9 lines (8 loc) 213 B
/** * Returns true if the passed value is an object * @param {*} obj * @returns {boolean} */ export function isObject (obj) { return obj !== null && !!obj && typeof obj === 'object' && !Array.isArray(obj) }