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 19c3f52 commit 1fb4be6Copy full SHA for 1fb4be6
1 file changed
lib/parse.js
@@ -43,11 +43,6 @@ function parse(input) {
43
key = input.slice(startingIndex + 1, i);
44
value = "";
45
}
46
- // Check if the current range consist of only values.
47
- else if (equalityIndex === startingIndex) {
48
- key = "";
49
- value = input.slice(equalityIndex + 1, i);
50
- }
51
// Range consist of both key and value
52
else {
53
key = input.slice(startingIndex + 1, equalityIndex);
0 commit comments