File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Shell script helper functions for encoding/decoding querystring data.
8
8
``` bash
9
9
#! /usr/bin/env import
10
10
11
- import querystring@1.2 .0
11
+ import querystring@1.3 .0
12
12
13
13
querystring_escape " hello world"
14
14
# hello%20world
@@ -27,7 +27,7 @@ querystring, it may be parsed with `querystring_parse`.
27
27
28
28
``` bash
29
29
#! /usr/bin/env import
30
- import querystring@1.2 .0
30
+ import querystring@1.3 .0
31
31
32
32
querystring " /api/hello"
33
33
# (empty)
@@ -44,7 +44,7 @@ Similar to `encodeURIComponent()` in JavaScript.
44
44
45
45
``` bash
46
46
#! /usr/bin/env import
47
- import querystring@1.2 .0
47
+ import querystring@1.3 .0
48
48
49
49
querystring_escape hello world
50
50
# hello%20world
@@ -62,7 +62,7 @@ Similar to `decodeURIComponent()` in JavaScript.
62
62
63
63
``` bash
64
64
#! /usr/bin/env import
65
- import querystring@1.2 .0
65
+ import querystring@1.3 .0
66
66
67
67
querystring_unescape " hello%20world"
68
68
# hello world
@@ -75,7 +75,7 @@ Parses the provided `qs` querystring and sets the requested shell variables.
75
75
76
76
``` bash
77
77
#! /usr/bin/env import
78
- import querystring@1.2 .0
78
+ import querystring@1.3 .0
79
79
80
80
querystring_parse " one=1&two=2&three=3" one two
81
81
You can’t perform that action at this time.
0 commit comments