thaldrin/src/utils/replace.ts

4 lines
156 B
TypeScript
Raw Normal View History

2021-04-08 20:12:23 +00:00
export default function replace(to_replace: string, replace_with: string, full_string: string) {
return full_string.replace(to_replace, replace_with)
}