function replaceAsyncimport { replaceAsync } from "https://dotland.deno.dev/x/denoify@v1.1.2/src/tools/replaceAsync.ts"; replaceAsync(str: string,regex: RegExp,replacerAsync: (str: string, ...args: any[]) => Promise<string>,)Equivalent of String.prototype.replace but with async replacer is async Parametersstr: stringregex: RegExpreplacerAsync: (str: string, ...args: any[]) => Promise<string>