MOOver.js/node_modules/mongoose/lib/helpers/query/isOperator.js
2022-02-18 13:54:33 +01:00

11 lines
No EOL
181 B
JavaScript

'use strict';
const specialKeys = new Set([
'$ref',
'$id',
'$db'
]);
module.exports = function isOperator(path) {
return path.startsWith('$') && !specialKeys.has(path);
};