Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@wry/context

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wry/context - npm Package Compare versions

Comparing version 0.2.1 to 0.2.2

5

lib/context.esm.js

@@ -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 @@ };

4

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc