( str: string, searchValue: string | RegExp, replaceValue: string, )
| 120 | ): string[] => str.split(separator, limit); |
| 121 | |
| 122 | export const strReplace = ( |
| 123 | str: string, |
| 124 | searchValue: string | RegExp, |
| 125 | replaceValue: string, |
| 126 | ): string => str.replace(searchValue, replaceValue); |
no outgoing calls
no test coverage detected
searching dependent graphs…