You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my opinion assuming empty or whitespace-only keys are not useful to the client feels a little presumptuous. If someone tries to parse '?%20&', isn't {"":null," ":null} the honest response? (Either that or {"":""," ":""}).
stringify(parse('?%20&'))
yields only&
.Bit of an edge-case I admit, but do we want to be losing this information?
parse('?%20&')
yields{"":null," ":null}
.The text was updated successfully, but these errors were encountered: