Comparing version 3.3.0 to 3.3.1
3.3.1 / 2017-05-10 | ||
================== | ||
* fix: should support fork(cmd, opt) (#52) | ||
3.3.0 / 2016-10-14 | ||
@@ -3,0 +8,0 @@ ================== |
@@ -216,2 +216,8 @@ 'use strict'; | ||
function run(method, cmd, args, opt) { | ||
if (!opt && args && typeof args === 'object' && !Array.isArray(args)) { | ||
// run(method, cmd, opt) | ||
opt = args; | ||
args = null; | ||
} | ||
args = args || []; | ||
@@ -218,0 +224,0 @@ opt = opt || {}; |
{ | ||
"name": "coffee", | ||
"version": "3.3.0", | ||
"version": "3.3.1", | ||
"description": "Test command line on nodejs", | ||
@@ -5,0 +5,0 @@ "main": "index.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
17361
358