(str: string, count: number)
| 103 | export const id = (key: unknown): Id => EMPTY_STRING + key; |
| 104 | |
| 105 | export const strRepeat = (str: string, count: number) => str.repeat(count); |
| 106 | |
| 107 | export const strStartsWith = (str: string, prefix: string) => |
| 108 | str.startsWith(prefix); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…