ccashfrontend/views/node_modules/mongoose/lib/helpers/isObject.js
2021-06-18 09:20:09 +10:00

16 lines
No EOL
311 B
JavaScript

'use strict';
/*!
* Determines if `arg` is an object.
*
* @param {Object|Array|String|Function|RegExp|any} arg
* @api private
* @return {Boolean}
*/
module.exports = function(arg) {
if (Buffer.isBuffer(arg)) {
return true;
}
return Object.prototype.toString.call(arg) === '[object Object]';
};