Comparing version 2.0.0 to 2.0.1
{ | ||
"name": "it-merge", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "Treat one or more iterables as a single iterable", | ||
@@ -141,5 +141,5 @@ "author": "Alex Potsides <alex@achingbrain.net>", | ||
"devDependencies": { | ||
"aegir": "^37.5.0", | ||
"aegir": "^38.1.7", | ||
"it-all": "^2.0.0" | ||
} | ||
} |
@@ -9,3 +9,3 @@ import { pushable } from 'it-pushable' | ||
*/ | ||
export default async function * merge <T> (...sources: Array<AsyncIterable<T>|Iterable<T>>): AsyncGenerator<T, void, undefined> { | ||
export default async function * merge <T> (...sources: Array<AsyncIterable<T> | Iterable<T>>): AsyncGenerator<T, void, undefined> { | ||
const output = pushable<T>({ | ||
@@ -12,0 +12,0 @@ objectMode: true |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
7860
0