promise.pipe
Advanced tools
Comparing version 1.0.2 to 3.0.0
@@ -12,4 +12,4 @@ module.exports = pipe | ||
function rest (ar) { | ||
return ar.slice(1) | ||
function rest (array) { | ||
return array.slice(1) | ||
} | ||
@@ -16,0 +16,0 @@ |
{ | ||
"name": "promise.pipe", | ||
"version": "1.0.2", | ||
"version": "3.0.0", | ||
"description": "Performs left to right composition of one or more functions whom return promises", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -26,3 +26,3 @@ # promise-pipe | ||
#### `pipe(Array<Function<Promise>>, or Function<Promise>)` -> `promise` | ||
#### `pipe(callbacks..., or Array<callbacks>)` -> `promise` | ||
@@ -29,0 +29,0 @@ Runs multiple promise-returning functions in a series, passing each result to the next defined promise-returning function. |
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
4283