You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
464 B
21 lines
464 B
'use strict';
|
|
|
|
/*!
|
|
* Returns if `v` is a mongoose object that has a `toObject()` method we can use.
|
|
*
|
|
* This is for compatibility with libs like Date.js which do foolish things to Natives.
|
|
*
|
|
* @param {any} v
|
|
* @api private
|
|
*/
|
|
|
|
module.exports = function(v) {
|
|
if (v == null) {
|
|
return false;
|
|
}
|
|
|
|
return v.$__ != null || // Document
|
|
v.isMongooseArray || // Array or Document Array
|
|
v.isMongooseBuffer || // Buffer
|
|
v.$isMongooseMap; // Map
|
|
};
|