@wry/context
Advanced tools
Comparing version 0.2.1 to 0.2.2
@@ -59,3 +59,4 @@ var currentContext = null; | ||
_a); | ||
currentContext = { parent: currentContext, slots: slots }; | ||
var parent = currentContext; | ||
currentContext = { parent: parent, slots: slots }; | ||
try { | ||
@@ -67,3 +68,3 @@ // Function.prototype.apply allows the arguments array argument to be | ||
finally { | ||
currentContext = currentContext.parent; | ||
currentContext = parent; | ||
} | ||
@@ -70,0 +71,0 @@ }; |
@@ -63,3 +63,4 @@ 'use strict'; | ||
_a); | ||
currentContext = { parent: currentContext, slots: slots }; | ||
var parent = currentContext; | ||
currentContext = { parent: parent, slots: slots }; | ||
try { | ||
@@ -71,3 +72,3 @@ // Function.prototype.apply allows the arguments array argument to be | ||
finally { | ||
currentContext = currentContext.parent; | ||
currentContext = parent; | ||
} | ||
@@ -74,0 +75,0 @@ }; |
{ | ||
"name": "@wry/context", | ||
"version": "0.2.1", | ||
"version": "0.2.2", | ||
"author": "Ben Newman <ben@eloper.dev>", | ||
@@ -31,3 +31,3 @@ "description": "Manage contextual information needed by (a)synchronous tasks without explicitly passing objects around", | ||
}, | ||
"gitHead": "df6235c13199ae5e212e58853126915a9ebf59c1" | ||
"gitHead": "955e81f294d1149cecf4b86d0aff305ce3790fb7" | ||
} |
Sorry, the diff of this file is not supported yet
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
18218
350