1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/src/utils/url.ts

9 lines
250 B
TypeScript
Raw Normal View History

2022-04-05 15:58:12 -04:00
export const getParameterByName = (name: string, url?: string | null | undefined) => {
2022-04-06 17:31:54 -04:00
if (!url) {
url = window.location.search;
2022-04-05 15:58:12 -04:00
}
2022-04-06 17:31:54 -04:00
// eslint-disable-next-line compat/compat
return new URLSearchParams(url).get(name) || '';
2022-04-05 15:58:12 -04:00
};