Skip to content

Commit 2d02f3b

Browse files
committed
[inspector] Concise CSS
1 parent 7f359f1 commit 2d02f3b

File tree

2 files changed

+203
-152
lines changed

2 files changed

+203
-152
lines changed

src/common/array.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const arrayForEach = <Value>(
3737
cb: (value: Value, index: number) => void,
3838
): void => array.forEach(cb);
3939

40-
export const arrayJoin = (array: string[], sep = EMPTY_STRING) =>
40+
export const arrayJoin = (array: (string | number)[], sep = EMPTY_STRING) =>
4141
array.join(sep);
4242

4343
export const arrayMap = <Value, Return>(

0 commit comments

Comments
 (0)