You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Creates a string by concatenating all elements provided by the iterator, separated by the specified separator.
160
+
* @param separator - A string to separate each element. If omitted, the elements are separated by commas.
161
+
*/
158
162
join(separator?: unknown): string;
159
163
}
160
164
@@ -172,14 +176,14 @@ declare namespace CoreJS {
172
176
* @param iterables - An Iterable of iterables.
173
177
* @param options - Optional object:
174
178
* - mode: 'shortest' (default) to stop at the shortest iterable | 'longest' to stop at the longest iterable | 'strict' to throw if iterables are not the same length;
175
-
* - padding: an object specifying padding values for each key when mode is 'longest'.
176
-
* @returns An iterator yielding objects with keys from the input iterables and values from the corresponding iterables.
179
+
* - padding: an iterable specifying padding values for each position when mode is 'longest'.
180
+
* @returns An iterator yielding arrays of values, collected one from each iterable.
177
181
*/
178
182
zip<TextendsreadonlyIterable<unknown>[]>(iterables: T,options?: ZipOptions): CoreJSIteratorObject<{[KinkeyofT]: T[K]extendsIterable<infer V> ? V : never},undefined,unknown>;
0 commit comments