UNPKG

snekfetch

Version:

Just do http requests without all that weird nastiness from other libs

8 lines (6 loc) 223 B
exports.parse = (str) => { const parsed = {}; for (const [k, v] of new Window.URLSearchParams(str).entries()) parsed[k] = v; return parsed; }; exports.stringify = (obj) => new window.URLSearchParams(obj).toString();