functional-streams
Advanced tools
Comparing version 1.0.7 to 1.0.8
@@ -26,2 +26,3 @@ /// <reference types="node" /> | ||
constructor(reduceFunction: (cumulative: R, newItem: T) => R | Promise<R>, begin: R); | ||
constructor(reduceFunction: (cumulative: R | undefined, newItem: T) => R | Promise<R>); | ||
_write(data: T, encoding: string, callback: (error?: any, result?: any) => void): void; | ||
@@ -28,0 +29,0 @@ then<T>(f: (r: R) => T | Promise<T>, e?: (e: Error) => any): Promise<any>; |
{ | ||
"name": "functional-streams", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"description": "Native implementations of map, reduce, and batch, to act on streams.", | ||
@@ -9,3 +9,3 @@ "main": "build/streams.js", | ||
"test": "npm run build; mocha build/test.js", | ||
"build": "tsc" | ||
"prepare": "tsc" | ||
}, | ||
@@ -12,0 +12,0 @@ "repository": { |
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
25114
695