Comparing version 1.1.0 to 1.1.1
NoFlo ChangeLog | ||
=============== | ||
## 1.1.1 (February 19th 2018) | ||
* Fixed `noflo.asComponent` handling of functions that return a `NULL` | ||
## 1.1.0 (February 19th 2018) | ||
@@ -5,0 +9,0 @@ |
@@ -119,3 +119,3 @@ // NoFlo - Flow-Based Programming for JavaScript | ||
res = func.apply(null, values); | ||
if (typeof res === 'object' && typeof res.then === 'function') { | ||
if (res && typeof res === 'object' && typeof res.then === 'function') { | ||
// Result is a Promise, resolve and handle | ||
@@ -122,0 +122,0 @@ res.then(function(val) { |
@@ -11,3 +11,3 @@ { | ||
"author": "Henri Bergius <henri.bergius@iki.fi>", | ||
"version": "1.1.0", | ||
"version": "1.1.1", | ||
"license": "MIT", | ||
@@ -14,0 +14,0 @@ "engines": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
690627