(str: string, suffix: string)
| 108 | str.startsWith(prefix); |
| 109 | |
| 110 | export const strEndsWith = (str: string, suffix: string) => |
| 111 | str.endsWith(suffix); |
| 112 | |
| 113 | export const strMatch = (str: string | undefined, regex: RegExp) => |
| 114 | str?.match(regex); |
no outgoing calls
no test coverage detected
searching dependent graphs…