reactive-box
Advanced tools
Comparing version 0.1.5 to 0.1.6
{ | ||
"name": "reactive-box", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"description": "Minimalistic, fast, and highly efficient reactivity", | ||
@@ -47,3 +47,3 @@ "scripts": { | ||
"homepage": "https://github.com/betula/reactive-box#readme", | ||
"gitHead": "8df18f1edaebd4406064cb2dae69bcb9098cb52a" | ||
"gitHead": "6cb7d3d3935b301bfc0972c874f03b1f5fca9280" | ||
} |
@@ -49,3 +49,3 @@ /** | ||
let sync; | ||
while (sync = iter.next().value) { | ||
while ((sync = iter.next().value)) { | ||
sync(); | ||
@@ -89,3 +89,3 @@ syncs.delete(sync); | ||
return [ | ||
() => { | ||
function () { | ||
read(sel_node); | ||
@@ -96,3 +96,3 @@ if (!sel_node[2]) { | ||
try { | ||
cache = body(); | ||
cache = body.call(this); | ||
} finally { | ||
@@ -99,0 +99,0 @@ context_node = stack; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
7795