Inverse of querystring.parse. Convert an object into a URL-encoded
query string. URL-encode keys and values. Skip keys whose value is null.
Sort keys alphabetically for deterministic output.
solve({ a: 1, b: 'hi there' }) → 'a=1&b=hi%20there'.
Sample tests