We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f359f1 commit 2d02f3bCopy full SHA for 2d02f3b
src/common/array.ts
@@ -37,7 +37,7 @@ export const arrayForEach = <Value>(
37
cb: (value: Value, index: number) => void,
38
): void => array.forEach(cb);
39
40
-export const arrayJoin = (array: string[], sep = EMPTY_STRING) =>
+export const arrayJoin = (array: (string | number)[], sep = EMPTY_STRING) =>
41
array.join(sep);
42
43
export const arrayMap = <Value, Return>(
0 commit comments