discord-baymax-bot/node_modules/superagent/lib/is-object.js

14 lines
207 B
JavaScript
Raw Normal View History

2017-03-24 04:52:08 +00:00
/**
* 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;