objectToQuery
Converts an object representing a set of name/value pairs into a query string, with names and values encoded properly for use in a URL. Values that are arrays will produce multiple values with the same name.
const str = objectToQuery({
key1 : 'some value',
key2 : 'a/b',
key3 : ['x', 'y']
});
Content copied to clipboard
Return
An encoded query string.
Parameters
obj
The object containing data to encode.