async-to-gen
Advanced tools
Comparing version 1.1.1 to 1.1.2
@@ -451,3 +451,3 @@ var babylon = require('babylon'); | ||
var node = parent[keys[index]]; | ||
if (node && typeof node === 'object' && (node.type || node.length && node[0].type)) { | ||
if (node && typeof node === 'object' && (node.type || node.length)) { | ||
stack = { parent: parent, keys: keys, index: index, prev: stack }; | ||
@@ -454,0 +454,0 @@ parent = node; |
{ | ||
"name": "async-to-gen", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "Transform async functions to generator functions with speed and simplicity.", | ||
@@ -5,0 +5,0 @@ "author": "Lee Byron <lee@leebyron.com> (http://leebyron.com/)", |
@@ -159,3 +159,3 @@ async-to-gen | ||
Writing tests in Jest? Use the (scriptPreprocessor)[http://facebook.github.io/jest/docs/api.html#scriptpreprocessor-string] entry in your jest configuration in package.json: | ||
Writing tests in Jest? Use the [scriptPreprocessor](http://facebook.github.io/jest/docs/api.html#scriptpreprocessor-string) entry in your jest configuration in package.json: | ||
@@ -162,0 +162,0 @@ ```js |
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
43758