thaldrin/src/utils/replace.ts
2021-10-17 18:39:09 +02:00

4 lines
No EOL
153 B
TypeScript

export default function replace(to_replace: any, replace_with: string, full_string: string) {
return full_string.replace(to_replace, replace_with)
}