UNPKG

@sveltejs/kit

Version:

SvelteKit is the fastest way to build Svelte apps

7 lines (5 loc) 149 B
const query_pattern = /\?.*$/s; /** @param {string} path */ export function remove_query_from_id(path) { return path.replace(query_pattern, ''); }