00001 00026 function isObject(value) { 00027 var type = typeof value; 00028 return value != null && (type == 'object' || type == 'function'); 00029 } 00030 00031 module.exports = isObject;