Files
lsp/node_modules/mongoose/lib/helpers/query/isOperator.js
Arnaud Nelissen 3af7ddab06 Initial commit
2021-11-17 11:25:08 +01:00

11 lines
181 B
JavaScript

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