@daysnap/utils
Version:
12 lines (8 loc) • 320 B
JavaScript
;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;