We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5149508 commit bc66471Copy full SHA for bc66471
src/parse.ts
@@ -91,7 +91,7 @@ export function splitSource(source: string): string[] {
91
// If we find an open curly bracket, we should also find the closing one
92
// before to checking for the http method.
93
if (source[index] == "{") {
94
- for (; index < len; ) {
+ while (index < len) {
95
96
brackets += 1;
97
} else if (source[index] == "}") {
0 commit comments