UNPKG

181 BJavaScriptView Raw
1'use strict';
2
3const specialKeys = new Set([
4 '$ref',
5 '$id',
6 '$db'
7]);
8
9module.exports = function isOperator(path) {
10 return path.startsWith('$') && !specialKeys.has(path);
11};
\No newline at end of file