function makeURLSearchParams

export declare function makeURLSearchParams<T extends object>(options?: Readonly<T>): URLSearchParams_2;

Creates and populates an URLSearchParams instance from an object, stripping out null and undefined values, while also coercing non-strings to strings.

Returns: A populated URLSearchParams instance

Type Parameters

T extends object

Parameters

optional
options?: Readonly<T>
The options to use