cheetah-framework
Version:
Cheetah Framework JS used in all our applications
23 lines (17 loc) • 423 B
JavaScript
function isObject (value) {
return Object.prototype.toString.call(value).toLowerCase() === '[object object]'
}
function isArray (value) {
return Object.prototype.toString.call(value).toLowerCase() === '[object array]'
}
function isEmpty (value) {
if (isArray(value)) {
return value.length === 0
}
return value === null || value === undefined || value === ''
}
export {
isObject,
isArray,
isEmpty
}