UNPKG

@daysnap/utils

Version:
13 lines (11 loc) 258 B
// src/parseQueryString.ts function parseQueryString(value) { return decodeURIComponent(value).split("&").reduce((res, item) => { const [key, value2] = item.split("="); res[key] = value2; return res; }, {}); } export { parseQueryString };