@@ -23,6 +23,7 @@ const AMPERSAND_RE = /&/g // %26
23
23
const SLASH_RE = / \/ / g // %2F
24
24
const EQUAL_RE = / = / g // %3D
25
25
const IM_RE = / \? / g // %3F
26
+ const PLUS_RE = / \+ / g // %2B
26
27
/**
27
28
* NOTE: It's not clear to me if we should encode the + symbol in queries, it
28
29
* seems to be less flexible than not doing so and I can't find out the legacy
@@ -37,7 +38,6 @@ const IM_RE = /\?/g // %3F
37
38
* - https://url.spec.whatwg.org/#urlencoded-parsing
38
39
* - https://stackoverflow.com/questions/1634271/url-encoding-the-space-character-or-20
39
40
*/
40
- // const PLUS_RE = /\+/g // %3F
41
41
42
42
const ENC_BRACKET_OPEN_RE = / % 5 B / g // [
43
43
const ENC_BRACKET_CLOSE_RE = / % 5 D / g // ]
@@ -46,6 +46,7 @@ const ENC_BACKTICK_RE = /%60/g // `
46
46
const ENC_CURLY_OPEN_RE = / % 7 B / g // {
47
47
const ENC_PIPE_RE = / % 7 C / g // |
48
48
const ENC_CURLY_CLOSE_RE = / % 7 D / g // }
49
+ const ENC_SPACE_RE = / % 2 0 / g // }
49
50
50
51
/**
51
52
* Encode characters that need to be encoded on the path, search and hash
@@ -83,13 +84,18 @@ export function encodeHash(text: string): string {
83
84
* @returns encoded string
84
85
*/
85
86
export function encodeQueryValue ( text : string | number ) : string {
86
- return commonEncode ( text )
87
- . replace ( HASH_RE , '%23' )
88
- . replace ( AMPERSAND_RE , '%26' )
89
- . replace ( ENC_BACKTICK_RE , '`' )
90
- . replace ( ENC_CURLY_OPEN_RE , '{' )
91
- . replace ( ENC_CURLY_CLOSE_RE , '}' )
92
- . replace ( ENC_CARET_RE , '^' )
87
+ return (
88
+ commonEncode ( text )
89
+ // Encode the space as +, encode the + to differentiate it from the space
90
+ . replace ( PLUS_RE , '%2B' )
91
+ . replace ( ENC_SPACE_RE , '+' )
92
+ . replace ( HASH_RE , '%23' )
93
+ . replace ( AMPERSAND_RE , '%26' )
94
+ . replace ( ENC_BACKTICK_RE , '`' )
95
+ . replace ( ENC_CURLY_OPEN_RE , '{' )
96
+ . replace ( ENC_CURLY_CLOSE_RE , '}' )
97
+ . replace ( ENC_CARET_RE , '^' )
98
+ )
93
99
}
94
100
95
101
/**
0 commit comments