Open
Description
The URL standard includes the URLSearchParams
interface which in many cases should be able to replace this module. I think it should be suggested as an alternative.
> String(new URLSearchParams({a: 1, b: 2}))
'a=1&b=2'
> Object.fromEntries(new URLSearchParams('a=1&b=2'))
{ a: '1', b: '2' }