deno.land / x / mongoose@6.7.5 / lib / helpers / isMongooseObject.js

isMongooseObject.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
'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 ) );};
mongoose

Version Info

Tagged at
a year ago