Fichtelgard

Replace all strings in string

function replaceAll(str: string, find: string, replace: string) {
return str.replace(new RegExp(find, "g"), replace);
}