2
0
mirror of https://github.com/tenrok/axios.git synced 2026-05-30 15:24:11 +03:00

fix missing dot

This commit is contained in:
Maximilian Hoffmann
2015-07-23 10:49:12 +02:00
parent f44597e38b
commit 2209226c7c
+1 -1
View File
@@ -8,7 +8,7 @@ function encode(val) {
replace(/%3A/gi, ':').
replace(/%24/g, '$').
replace(/%2C/gi, ',').
replace(/%20/g, '+')
replace(/%20/g, '+').
replace(/%5B/gi, '[').
replace(/%5D/gi, ']');
}