UNPKG

qs-like

Version:

A tiny query string parsing and stringifying library

13 lines (10 loc) 196 B
/* * qs-like.js v1.0.1 * (c) 2018-2019 Jesse Feng * Released under the MIT License. */ 'use strict'; function unescape (str) { return decodeURIComponent(str); } module.exports = unescape;