diff
Paste two pieces of text, or two JSON values. See what changed — line, word, or a structural JSON compare that ignores key order. Share the URL — state lives in the address bar.
112/102,400 bytes
122/102,400 bytes
function parseQuery(input) {
function parseQuery(input) {
const params = new URLSearchParams(input);
const params = new URLSearchParams(input);
return Object.fromEntries(params);
return Object.fromEntries(params.entries());
}
}