summaryrefslogtreecommitdiff
path: root/std/fmt/colors.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/fmt/colors.ts')
-rw-r--r--std/fmt/colors.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/fmt/colors.ts b/std/fmt/colors.ts
index 9476ce076..ad2a6a1be 100644
--- a/std/fmt/colors.ts
+++ b/std/fmt/colors.ts
@@ -37,7 +37,7 @@ function code(open: number, close: number): Code {
return {
open: `\x1b[${open}m`,
close: `\x1b[${close}m`,
- regexp: new RegExp(`\\x1b\\[${close}m`, "g")
+ regexp: new RegExp(`\\x1b\\[${close}m`, "g"),
};
}