Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
evaluate(vm: UpdatingVM) {
let { cache } = this;
if (isModified(cache.revalidate())) {
vm.throw();
}
}
}
evaluate(vm: UpdatingVM) {
let { cache } = this;
if (isModified(cache.revalidate())) {
vm.throw();
}
}
}
patch(env: Environment) {
let { element, cache } = this;
let value = cache.revalidate();
if (isModified(value)) {
this.attributeManager.updateAttribute(env, element as FIXME, value, this.namespace);
}
}