diff --git a/src/utils/replace.ts b/src/utils/replace.ts new file mode 100644 index 0000000..ff0813c --- /dev/null +++ b/src/utils/replace.ts @@ -0,0 +1,4 @@ +export default function replace(to_replace: string, replace_with: string, full_string: string) { + + return full_string.replace(to_replace, replace_with) +} \ No newline at end of file