Add prelude function for URL Query (#4135)
* Update string.ts * Refactor * Update string.ts * Update wrap-url.ts * Update string.ts * Update get-static-image-url.ts * Use querystring.stringify * Update outbox.ts * Back to the urlQuery * Update followers.ts * Update following.ts * Update outbox.ts * Update string.ts * Update get-static-image-url.ts * Update string.ts * Update string.ts * Separate prelude files
This commit is contained in:
parent
3548290ff2
commit
4b6c113251
5 changed files with 48 additions and 14 deletions
7
src/prelude/url.ts
Normal file
7
src/prelude/url.ts
Normal file
|
@ -0,0 +1,7 @@
|
|||
import { stringify } from 'querystring';
|
||||
|
||||
export function query(obj: {}): string {
|
||||
return stringify(Object.entries(obj)
|
||||
.filter(([, v]) => Array.isArray(v) ? v.length : v !== undefined)
|
||||
.reduce((a, [k, v]) => (a[k] = v, a), {} as Record<string, any>));
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue