(str: string, prefix: string)
| 105 | export const strRepeat = (str: string, count: number) => str.repeat(count); |
| 106 | |
| 107 | export const strStartsWith = (str: string, prefix: string) => |
| 108 | str.startsWith(prefix); |
| 109 | |
| 110 | export const strEndsWith = (str: string, suffix: string) => |
| 111 | str.endsWith(suffix); |
no outgoing calls
no test coverage detected
searching dependent graphs…