mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-26 09:36:02 -07:00
13 lines
480 B
TypeScript
13 lines
480 B
TypeScript
export function query(obj: Record<string, any>): string {
|
|
const params = Object.entries(obj)
|
|
.filter(([, v]) => Array.isArray(v) ? v.length : v !== undefined)
|
|
.reduce((a, [k, v]) => (a[k] = v, a), {} as Record<string, any>);
|
|
|
|
return Object.entries(params)
|
|
.map((p) => `${p[0]}=${encodeURIComponent(p[1])}`)
|
|
.join('&');
|
|
}
|
|
|
|
export function appendQuery(url: string, query: string): string {
|
|
return `${url}${/\?/.test(url) ? url.endsWith('?') ? '' : '&' : '?'}${query}`;
|
|
}
|