Socket
Socket
Sign inDemoInstall

regenerator-runtime

Package Overview
Dependencies
0
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.12.0 to 0.12.1

2

package.json

@@ -5,3 +5,3 @@ {

"description": "Runtime for Regenerator-compiled generator and async functions.",
"version": "0.12.0",
"version": "0.12.1",
"main": "runtime-module.js",

@@ -8,0 +8,0 @@ "keywords": [

@@ -10,3 +10,5 @@ /**

// kept identical to the way it is obtained in runtime.js
var g = (function() { return this })() || Function("return this")();
var g = (function() {
return this || (typeof self === "object" && self);
})() || Function("return this")();

@@ -13,0 +15,0 @@ // Use `getOwnPropertyNames` because not all browsers support calling

@@ -718,3 +718,5 @@ /**

// of indirect eval which violates Content Security Policy.
(function() { return this })() || Function("return this")()
(function() {
return this || (typeof self === "object" && self);
})() || Function("return this")()
);
SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc