Skip to content

Commit 519d642

Browse files
committed
style: apply prettier
1 parent 5ff4552 commit 519d642

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

packages/kit/src/runtime/client/client.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,14 @@ import {
77
make_trackable,
88
normalize_path
99
} from '../../utils/url.js';
10-
import { create_fetch, dev_fetch, initial_fetch, lock_fetch, subsequent_fetch, unlock_fetch } from './fetcher.js';
10+
import {
11+
create_fetch,
12+
dev_fetch,
13+
initial_fetch,
14+
lock_fetch,
15+
subsequent_fetch,
16+
unlock_fetch
17+
} from './fetcher.js';
1118
import { parse, parse_server_route } from './parse.js';
1219
import * as storage from './session-storage.js';
1320
import {

packages/kit/src/runtime/client/fetcher.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,11 @@ export function create_fetch(app) {
9090

9191
return app.hooks.handleFetch({
9292
request: original_request,
93-
fetch: runtime_fetch,
93+
fetch: runtime_fetch
9494
});
9595
};
9696
}
9797

98-
9998
const cache = new Map();
10099

101100
/**
@@ -195,7 +194,6 @@ function build_selector(resource, opts) {
195194
return selector;
196195
}
197196

198-
199197
/**
200198
* @param {RequestInfo | URL} info
201199
* @param {RequestInit | undefined} init

0 commit comments

Comments
 (0)