Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | export const SvelteDate = globalThis.Date; export const SvelteSet = globalThis.Set; export const SvelteMap = globalThis.Map; export const SvelteURL = globalThis.URL; export const SvelteURLSearchParams = globalThis.URLSearchParams; /** @deprecated Use `SvelteDate` instead */ export function Date() { throw new Error('Date has been removed, use SvelteDate instead.'); } /** @deprecated Use `SvelteSet` instead */ export function Set() { throw new Error('Set has been removed, use SvelteSet instead.'); } /** @deprecated Use `SvelteMap` instead */ export function Map() { throw new Error('Map has been removed, use SvelteMap instead.'); } /** @deprecated Use `SvelteURL` instead */ export function URL() { throw new Error('URL has been removed, use SvelteURL instead.'); } /** @deprecated Use `SvelteURLSearchParams` instead */ export function URLSearchParams() { throw new Error('URLSearchParams has been removed, use SvelteURLSearchParams instead.'); } |