Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
ascorbic authored and astrobot-houston committed Jan 21, 2025
1 parent 1d272f6 commit bf119db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/astro/src/core/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import { fileURLToPath } from 'node:url';
import type { AstroSettings } from '../types/astro.js';
import type { AstroConfig } from '../types/public/config.js';
import type { RouteData } from '../types/public/internal.js';
import { hasSpecialQueries } from '../vite-plugin-utils/index.js';
import { SUPPORTED_MARKDOWN_FILE_EXTENSIONS } from './constants.js';
import { removeQueryString, removeTrailingForwardSlash, slash } from './path.js';
import { hasSpecialQueries } from '../vite-plugin-utils/index.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> {
Expand Down
2 changes: 1 addition & 1 deletion packages/astro/test/astro-markdown.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ describe('Astro Markdown', () => {
fixLineEndings(rawImport).trim(),
`# Basic page\n\nLets make sure raw and compiled content look right!`,
);
assert.ok(url.startsWith("data:text/markdown;base64,"));
assert.ok(url.startsWith('data:text/markdown;base64,'));
});

it('Exposes compiled HTML content', async () => {
Expand Down

0 comments on commit bf119db

Please sign in to comment.