Moved
This commit is contained in:
15
CM2010 Software Design and Development/Topic 2/8.3.1/node_modules/superagent/lib/is-object.js
generated
vendored
Normal file
15
CM2010 Software Design and Development/Topic 2/8.3.1/node_modules/superagent/lib/is-object.js
generated
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
'use strict';
|
||||
|
||||
/**
|
||||
* Check if `obj` is an object.
|
||||
*
|
||||
* @param {Object} obj
|
||||
* @return {Boolean}
|
||||
* @api private
|
||||
*/
|
||||
|
||||
function isObject(obj) {
|
||||
return null !== obj && 'object' === typeof obj;
|
||||
}
|
||||
|
||||
module.exports = isObject;
|
||||
Reference in New Issue
Block a user