Skip to content

Commit e6fee3b

Browse files
committed
remove unnecessary export
1 parent 453b486 commit e6fee3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { b64_decode } from '../utils.js';
55
let loading = 0;
66

77
/** @type {typeof fetch} */
8-
export const native_fetch = BROWSER ? window.fetch : /** @type {any} */ (() => {});
8+
const native_fetch = BROWSER ? window.fetch : /** @type {any} */ (() => {});
99

1010
export function lock_fetch() {
1111
loading += 1;

0 commit comments

Comments
 (0)