Socket
Socket
Sign inDemoInstall

regenerator-runtime

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

regenerator-runtime - npm Package Compare versions

Comparing version 0.14.0 to 0.14.1

2

package.json

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

"description": "Runtime for Regenerator-compiled generator and async functions.",
"version": "0.14.0",
"version": "0.14.1",
"main": "runtime.js",

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

@@ -262,4 +262,5 @@ /**

// Be forgiving, per 25.3.3.3.3 of the spec:
// https://people.mozilla.org/~jorendorff/es6-draft.html#sec-generatorresume
// Be forgiving, per GeneratorResume behavior specified since ES2015:
// ES2015 spec, step 3: https://262.ecma-international.org/6.0/#sec-generatorresume
// Latest spec, step 2: https://tc39.es/ecma262/#sec-generatorresume
return doneResult();

@@ -337,3 +338,3 @@ }

// A .throw or .return when the delegate iterator has no .throw
// method, or a missing .next mehtod, always terminate the
// method, or a missing .next method, always terminate the
// yield* loop.

@@ -492,3 +493,3 @@ context.delegate = null;

function values(iterable) {
if (iterable || iterable === "") {
if (iterable != null) {
var iteratorMethod = iterable[iteratorSymbol];

@@ -495,0 +496,0 @@ if (iteratorMethod) {

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