( str: string, separator: string | RegExp = EMPTY_STRING, limit?: number, )
| 114 | str?.match(regex); |
| 115 | |
| 116 | export const strSplit = ( |
| 117 | str: string, |
| 118 | separator: string | RegExp = EMPTY_STRING, |
| 119 | limit?: number, |
| 120 | ): string[] => str.split(separator, limit); |
| 121 | |
| 122 | export const strReplace = ( |
| 123 | str: string, |
no outgoing calls
no test coverage detected
searching dependent graphs…