You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
550 B
JavaScript
23 lines
550 B
JavaScript
'use strict';
|
|
|
|
const isMongooseArray = require('../types/array/isMongooseArray').isMongooseArray;
|
|
/**
|
|
* 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) {
|
|
return (
|
|
v != null && (
|
|
isMongooseArray(v) || // Array or Document Array
|
|
v.$__ != null || // Document
|
|
v.isMongooseBuffer || // Buffer
|
|
v.$isMongooseMap // Map
|
|
)
|
|
);
|
|
};
|