(
array: {forEach: (cb: (value: Value, index: number) => void) => void},
cb: (value: Value, index: number) => void,
)
| 44 | ): Value[] => array.sort(sorter); |
| 45 | |
| 46 | export const arrayForEach = <Value>( |
| 47 | array: {forEach: (cb: (value: Value, index: number) => void) => void}, |
| 48 | cb: (value: Value, index: number) => void, |
| 49 | ): void => array.forEach(cb); |
| 50 | |
| 51 | export const arrayJoin = (array: (string | number)[], sep = EMPTY_STRING) => |
| 52 | array.join(sep); |
no outgoing calls
no test coverage detected
searching dependent graphs…