Files
Stackq/node_modules/svelte/src/reactivity/index-server.js
T
eewing cf73cd3b4c INIT
2026-02-17 14:10:16 -06:00

24 lines
490 B
JavaScript

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;
export class MediaQuery {
current;
/**
* @param {string} query
* @param {boolean} [matches]
*/
constructor(query, matches = false) {
this.current = matches;
}
}
/**
* @param {any} _
*/
export function createSubscriber(_) {
return () => {};
}