UNPKG

vandium-utils

Version:
9 lines (5 loc) 158 B
function isObject( value ) { let type = typeof value; return !!value && ((type == 'object') || (type == 'function')); } module.exports = isObject;