babel-runtime
Advanced tools
Comparing version 5.6.0 to 5.6.1
{ | ||
"name": "babel-runtime", | ||
"description": "babel selfContained runtime", | ||
"version": "5.6.0", | ||
"version": "5.6.1", | ||
"license": "MIT", | ||
@@ -6,0 +6,0 @@ "repository": "babel/babel", |
@@ -138,3 +138,6 @@ /** | ||
var value = result.value; | ||
return value instanceof AwaitArgument ? _Promise.resolve(value.arg).then(invokeNext, invokeThrow) : result; | ||
return value instanceof AwaitArgument ? _Promise.resolve(value.arg).then(invokeNext, invokeThrow) : _Promise.resolve(value).then(function (unwrapped) { | ||
result.value = unwrapped; | ||
return result; | ||
}, invokeThrow); | ||
} | ||
@@ -141,0 +144,0 @@ |
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
48386
928