Maybe something like: ``` function stripConsoleFormatting(str: string): string { return ("" + str).replace(/\x1B\[[\d;]+m/g, ""); } ```