We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8beefee commit c8426c3Copy full SHA for c8426c3
1 file changed
lib/parse.js
@@ -24,7 +24,7 @@ function parse(input) {
24
let c = input.charCodeAt(i);
25
26
// Handle '&' and end of line to pass the current values to result
27
- if (c === 38 || c === 35 || isNaN(c)) {
+ if (c === 38 || isNaN(c)) {
28
// Disallow empty key values.
29
if (equalityIndex - separatorIndex > 0 && i - equalityIndex + 1 > 0) {
30
key = input.slice(separatorIndex, equalityIndex);
0 commit comments