Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
function CachedPathEvaluator(root, options) {
Evaluator.apply(this, arguments);
this.cache = options.cache;
}
function EnhancedEvaluator(root, optios) {
Evaluator.apply(this, arguments)
}
EnhancedEvaluator.prototype = Object.create(Evaluator.prototype)