UNPKG

@daysnap/utils

Version:
12 lines (8 loc) 320 B
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/stringifyQueryString.ts function stringifyQueryString(value) { return Object.keys(value).reduce((res, k) => { res.push(`${k}=${value[k]}`); return res; }, []).join("&"); } exports.stringifyQueryString = stringifyQueryString;