pipeline-fp-utils
Advanced tools
Comparing version 0.0.3 to 0.0.4
@@ -0,9 +1,10 @@ | ||
type Stream = ReadableStream | TransformStream | AsyncGenerator<any>; | ||
declare module "pipeline-fp-utils" { | ||
function map(g: any): any; | ||
function mergeObjects(g: any): any; | ||
function toJsonLine(g: any): any; | ||
function tap(g: any): any; | ||
function fromCallback(g: any): any; | ||
function filter(g: any): any; | ||
function fromArray(g: any): any; | ||
function map(g: Stream): Stream; | ||
function mergeObjects(g: Stream): Stream; | ||
function toJsonLine(g: Stream): Stream; | ||
function tap(g: Stream): Stream; | ||
function fromCallback(g: Stream): Stream; | ||
function filter(g: Stream): Stream; | ||
function fromArray(g: Array<any>): Stream; | ||
} |
{ | ||
"name": "pipeline-fp-utils", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "utilities fonctions to use with pipeline from streams module", | ||
@@ -24,3 +24,5 @@ "main": "lib/index.mjs", | ||
"homepage": "https://github.com/fosk06/pipeline-fp-utils#readme", | ||
"dependencies": {}, | ||
"dependencies": { | ||
"@types/node": "^17.0.35" | ||
}, | ||
"devDependencies": { | ||
@@ -27,0 +29,0 @@ "chai": "^4.3.6", |
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
7975
206
1
+ Added@types/node@^17.0.35
+ Added@types/node@17.0.45(transitive)