We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 721755d commit d4fbffaCopy full SHA for d4fbffa
src/util/query.js
@@ -6,7 +6,7 @@ const encodeReserveRE = /[!'()*]/g
6
const encodeReserveReplacer = c => '%' + c.charCodeAt(0).toString(16)
7
const commaRE = /%2C/g
8
9
-// fixed encodeURIComponent which is more comformant to RFC3986:
+// fixed encodeURIComponent which is more conformant to RFC3986:
10
// - escapes [!'()*]
11
// - preserve commas
12
const encode = str => encodeURIComponent(str)
0 commit comments