summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Matt Kane <ematipico@users.noreply.github.com> 2024-12-11 11:07:45 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2024-12-11 11:07:45 +0000
commitb3dfd9b01bd7424eb67bfbc2612544af5be09442 (patch)
treec45f99023044de273df69472027c7af91f3e0bc7
parent99266fa2898289a172d70a5ac3ffad7a5dcd2867 (diff)
downloadastro-b3dfd9b01bd7424eb67bfbc2612544af5be09442.tar.gz
astro-b3dfd9b01bd7424eb67bfbc2612544af5be09442.tar.zst
astro-b3dfd9b01bd7424eb67bfbc2612544af5be09442.zip
[ci] format
-rw-r--r--packages/astro/src/core/util.ts2
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> {