function escapeRegExp (str: string): string { return str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&') } export function replaceAll (str: string, find: string, replace: string): string { return str.replace(new RegExp(escapeRegExp(find), 'g'), replace) }