UNPKG

recoder-code

Version:

Complete AI-powered development platform with ML model training, plugin registry, real-time collaboration, monitoring, infrastructure automation, and enterprise deployment capabilities

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