FLUJOS/VISUALIZACION/node_modules/mongoose/lib/helpers/query/isOperator.js
2025-11-07 00:06:12 +01:00

14 lines
191 B
JavaScript
Executable file

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