UNPKG

@daysnap/utils

Version:
13 lines (9 loc) 347 B
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/parseQueryString.ts function parseQueryString(value) { return decodeURIComponent(value).split("&").reduce((res, item) => { const [key, value2] = item.split("="); res[key] = value2; return res; }, {}); } exports.parseQueryString = parseQueryString;