All files / src/reactivity index-client.js

66.66% Statements 20/30
100% Branches 0/0
0% Functions 0/5
66.66% Lines 20/30

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 311x 1x 1x 1x 1x 1x 1x 1x     1x 1x 1x     1x 1x 1x     1x 1x 1x     1x 1x 1x      
export { SvelteDate } from './date.js';
export { SvelteSet } from './set.js';
export { SvelteMap } from './map.js';
export { SvelteURL } from './url.js';
export { SvelteURLSearchParams } from './url-search-params.js';
 
/** @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.');
}