streaming-iterables
Advanced tools
Comparing version 4.1.0 to 4.1.1
@@ -63,4 +63,8 @@ /// <reference lib="esnext.asynciterable" /> | ||
export declare function filter<T, S extends T>(filterFunc: (data: T) => data is S): <A extends T>(curriedIterable: AnyIterable<A>) => AsyncIterableIterator<S>; | ||
export declare function filter<T>(filterFunc: (data: T) => boolean | Promise<boolean>): <A>(curriedIterable: AnyIterable<A>) => AsyncIterableIterator<A>; | ||
export declare function filter<T, S extends T>(filterFunc: (data: T) => data is S, iterable: AnyIterable<T>): AsyncIterableIterator<S>; | ||
export declare function filter<T>(filterFunc: (data: T) => boolean | Promise<boolean>, iterable: AnyIterable<T>): AsyncIterableIterator<T>; | ||
@@ -67,0 +71,0 @@ |
{ | ||
"name": "streaming-iterables", | ||
"version": "4.1.0", | ||
"version": "4.1.1", | ||
"description": "A collection of utilities for async iterables. Designed to replace your streams.", | ||
@@ -5,0 +5,0 @@ "main": "dist/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
104481
2099