isOperator.js 181 B

1234567891011
  1. 'use strict';
  2. const specialKeys = new Set([
  3. '$ref',
  4. '$id',
  5. '$db'
  6. ]);
  7. module.exports = function isOperator(path) {
  8. return path.startsWith('$') && !specialKeys.has(path);
  9. };