summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/internal/console/constructor.mjs
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-07-08 14:34:08 -0400
committerGitHub <noreply@github.com>2023-07-08 18:34:08 +0000
commitf3095b8d311c85f633d280a980f76062015f8974 (patch)
tree60537fb8016ae629abed07309389649be78b39d9 /ext/node/polyfills/internal/console/constructor.mjs
parente4870d84be19f4ea768933522eff437f64963730 (diff)
chore: upgrade to dprint 0.39 (#19768)
Diffstat (limited to 'ext/node/polyfills/internal/console/constructor.mjs')
-rw-r--r--ext/node/polyfills/internal/console/constructor.mjs10
1 files changed, 8 insertions, 2 deletions
diff --git a/ext/node/polyfills/internal/console/constructor.mjs b/ext/node/polyfills/internal/console/constructor.mjs
index f15e677ec..5ea9eeb3a 100644
--- a/ext/node/polyfills/internal/console/constructor.mjs
+++ b/ext/node/polyfills/internal/console/constructor.mjs
@@ -30,7 +30,10 @@ const previewEntries = (iter, isKeyValue) => {
};
import { Buffer } from "node:buffer";
const { isBuffer } = Buffer;
-import { formatWithOptions, inspect } from "ext:deno_node/internal/util/inspect.mjs";
+import {
+ formatWithOptions,
+ inspect,
+} from "ext:deno_node/internal/util/inspect.mjs";
import {
isMap,
isMapIterator,
@@ -44,7 +47,10 @@ import {
CHAR_LOWERCASE_N as kTraceInstant,
CHAR_UPPERCASE_C as kTraceCount,
} from "ext:deno_node/internal/constants.ts";
-import { clearScreenDown, cursorTo } from "ext:deno_node/internal/readline/callbacks.mjs";
+import {
+ clearScreenDown,
+ cursorTo,
+} from "ext:deno_node/internal/readline/callbacks.mjs";
import cliTable from "ext:deno_node/internal/cli_table.ts";
const kCounts = Symbol("counts");