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