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.
22 lines
550 B
22 lines
550 B
'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 |
|
) |
|
); |
|
};
|
|
|