thaldrin/src/utils/replace.ts

4 lines
153 B
TypeScript
Raw Normal View History

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