(str: string | undefined, regex: RegExp)
| 111 | str.endsWith(suffix); |
| 112 | |
| 113 | export const strMatch = (str: string | undefined, regex: RegExp) => |
| 114 | str?.match(regex); |
| 115 | |
| 116 | export const strSplit = ( |
| 117 | str: string, |
no outgoing calls
no test coverage detected
searching dependent graphs…