forked from CSI-KJSCE/BOS-React-
Commit With Frontend and Backend in MERN
This commit is contained in:
22
backend/node_modules/mongoose/lib/helpers/isMongooseObject.js
generated
vendored
Normal file
22
backend/node_modules/mongoose/lib/helpers/isMongooseObject.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
'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
|
||||
)
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user