Skip to content

Commit c8426c3

Browse files
committed
fix: remove unnecessary # check
1 parent 8beefee commit c8426c3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/parse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ function parse(input) {
2424
let c = input.charCodeAt(i);
2525

2626
// Handle '&' and end of line to pass the current values to result
27-
if (c === 38 || c === 35 || isNaN(c)) {
27+
if (c === 38 || isNaN(c)) {
2828
// Disallow empty key values.
2929
if (equalityIndex - separatorIndex > 0 && i - equalityIndex + 1 > 0) {
3030
key = input.slice(separatorIndex, equalityIndex);

0 commit comments

Comments
 (0)