UNPKG

string-replace-all

Version:

Replaces all the occurrences of a string into a string with another string.

3 lines (2 loc) 113 B
declare const replaceAll: (str: string, find: string, replacement: string) => string; export default replaceAll;