7fife-backend/node_modules/mongoose/lib/helpers/query/isOperator.js

15 lines
191 B
JavaScript
Raw Permalink Normal View History

2024-03-07 13:01:44 +00:00
'use strict';
const specialKeys = new Set([
'$ref',
'$id',
'$db'
]);
module.exports = function isOperator(path) {
return (
path[0] === '$' &&
!specialKeys.has(path)
);
};