tiny-querystring
tiny-querystring copied to clipboard
Tiny parsing and formatting URL query strings for Node.js and browser (309B only)
Results
1
tiny-querystring issues
Sort by
recently updated
recently updated
newest added
feel free to steal my code ; ) ```js var parse = (hashString) => ( Object.fromEntries( hashString.slice(1).split('&') .map(keyval => ( cut = keyval.indexOf('='), (cut == -1) ? [keyval, true] :...