@ts-common/iterator
Advanced tools
Comparing version 0.0.19 to 0.0.20
@@ -15,2 +15,2 @@ export declare function iterable<T>(createIterator: () => Iterator<T>): Iterable<T>; | ||
export declare function zip<T>(...inputs: Array<Iterable<T>>): Iterable<ReadonlyArray<T>>; | ||
export declare function arrayEqual<T>(a: T[] | undefined, b: T[] | undefined, e: (ai: T, bi: T) => boolean): boolean; | ||
export declare function arrayEqual<T>(a: ReadonlyArray<T> | undefined, b: ReadonlyArray<T> | undefined, e: (ai: T, bi: T) => boolean): boolean; |
@@ -91,2 +91,3 @@ "use strict"; | ||
exports.max = max; | ||
/* tslint:disable-next-line:readonly-array */ | ||
function zip(...inputs) { | ||
@@ -93,0 +94,0 @@ function* iterator() { |
{ | ||
"name": "@ts-common/iterator", | ||
"version": "0.0.19", | ||
"version": "0.0.20", | ||
"description": "Iterator library for JavaScript and TypeScript", | ||
@@ -41,2 +41,3 @@ "main": "index.js", | ||
"tslint": "^5.10.0", | ||
"tslint-immutable": "^4.6.0", | ||
"typescript": "^2.9.2" | ||
@@ -43,0 +44,0 @@ }, |
17439
146
8