UNPKG
qs-like
Version:
latest (1.0.1)
next (2.0.0)
2.0.0
1.0.1
1.0.0
1.0.0-1
A tiny query string parsing and stringifying library
github.com/fengxinming/qs
fengxinming/qs
qs-like
/
unescape.js
13 lines
(10 loc)
•
196 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/* * 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
;