diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-07-08 14:34:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-08 18:34:08 +0000 |
commit | f3095b8d311c85f633d280a980f76062015f8974 (patch) | |
tree | 60537fb8016ae629abed07309389649be78b39d9 /ext/node/polyfills/internal/util.mjs | |
parent | e4870d84be19f4ea768933522eff437f64963730 (diff) |
chore: upgrade to dprint 0.39 (#19768)
Diffstat (limited to 'ext/node/polyfills/internal/util.mjs')
-rw-r--r-- | ext/node/polyfills/internal/util.mjs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/ext/node/polyfills/internal/util.mjs b/ext/node/polyfills/internal/util.mjs index 5d78902bf..596599859 100644 --- a/ext/node/polyfills/internal/util.mjs +++ b/ext/node/polyfills/internal/util.mjs @@ -4,9 +4,15 @@ // deno-lint-ignore-file prefer-primordials import { validateFunction } from "ext:deno_node/internal/validators.mjs"; -import { normalizeEncoding, slowCases } from "ext:deno_node/internal/normalize_encoding.mjs"; +import { + normalizeEncoding, + slowCases, +} from "ext:deno_node/internal/normalize_encoding.mjs"; export { normalizeEncoding, slowCases }; -import { ObjectCreate, StringPrototypeToUpperCase } from "ext:deno_node/internal/primordials.mjs"; +import { + ObjectCreate, + StringPrototypeToUpperCase, +} from "ext:deno_node/internal/primordials.mjs"; import { ERR_UNKNOWN_SIGNAL } from "ext:deno_node/internal/errors.ts"; import { os } from "ext:deno_node/internal_binding/constants.ts"; |