discord-baymax-bot/node_modules/superagent/lib/is-object.js
2017-03-23 23:52:08 -05:00

14 lines
207 B
JavaScript

/**
* 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;