UNPKG

yurl

Version:

A URL manipulation library that offers support for daisy chaining, pathname resolution and query args manipulation.

9 lines 348 B
export interface nilToEmptyStringFn { (v: undefined): ''; (v: null): ''; (v: ''): ''; <T>(v: T): Exclude<T, undefined | null | ''>; } export declare const nilToEmptyString: nilToEmptyStringFn; export declare const searchParamsToObj: (params: URLSearchParams) => Record<string, string | string[]>; //# sourceMappingURL=utils.d.ts.map