diff options
author | 2024-12-11 11:07:45 +0000 | |
---|---|---|
committer | 2024-12-11 11:07:45 +0000 | |
commit | b3dfd9b01bd7424eb67bfbc2612544af5be09442 (patch) | |
tree | c45f99023044de273df69472027c7af91f3e0bc7 | |
parent | 99266fa2898289a172d70a5ac3ffad7a5dcd2867 (diff) | |
download | astro-b3dfd9b01bd7424eb67bfbc2612544af5be09442.tar.gz astro-b3dfd9b01bd7424eb67bfbc2612544af5be09442.tar.zst astro-b3dfd9b01bd7424eb67bfbc2612544af5be09442.zip |
[ci] format
-rw-r--r-- | packages/astro/src/core/util.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/src/core/util.ts b/packages/astro/src/core/util.ts index 3a394764b..f0447529a 100644 --- a/packages/astro/src/core/util.ts +++ b/packages/astro/src/core/util.ts @@ -5,7 +5,7 @@ import type { AstroSettings } from '../types/astro.js'; import type { AstroConfig } from '../types/public/config.js'; import type { RouteType } from '../types/public/internal.js'; import { SUPPORTED_MARKDOWN_FILE_EXTENSIONS } from './constants.js'; -import { removeTrailingForwardSlash, slash, removeQueryString } from './path.js'; +import { removeQueryString, removeTrailingForwardSlash, slash } from './path.js'; /** Returns true if argument is an object of any prototype/class (but not null). */ export function isObject(value: unknown): value is Record<string, any> { |