isObj.js 147 B

123456
  1. exports = function(val) {
  2. var type = typeof val;
  3. return !!val && (type === 'function' || type === 'object');
  4. };
  5. module.exports = exports;