deno.land / x / mongoose@6.7.5 / lib / helpers / query / hasDollarKeys.js

hasDollarKeys.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
'use strict';
/*! * ignore */
module.exports = function hasDollarKeys(obj) {
if (typeof obj !== 'object' || obj === null) { return false; }
const keys = Object.keys(obj); const len = keys.length;
for (let i = 0; i < len; ++i) { if (keys[i][0] === '$') { return true; } }
return false;};
mongoose

Version Info

Tagged at
a year ago