deno.land / x / mongoose@6.7.5 / lib / helpers / projection / isDefiningProjection.js

isDefiningProjection.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
'use strict';
/*! * ignore */
module.exports = function isDefiningProjection(val) { if (val == null) { // `undefined` or `null` become exclusive projections return true; } if (typeof val === 'object') { // Only cases where a value does **not** define whether the whole projection // is inclusive or exclusive are `$meta` and `$slice`. return !('$meta' in val) && !('$slice' in val); } return true;};
mongoose

Version Info

Tagged at
a year ago