Skip to content

Commit

Permalink
Fix linter warning
Browse files Browse the repository at this point in the history
  • Loading branch information
TimvdLippe committed Feb 25, 2018
1 parent df0ee35 commit 14fac01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/utils/binding-parser.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,11 @@
let escaped = false;
/** @type {string} */
let quote;

/** @type {number} */
let state = STATE.INITIAL;
let i,l;

for (let i=0,l=text.length; i<l; i++) {
for (i=0,l=text.length; i<l; i++) {
const char = text.charAt(i);
switch (state) {
case STATE.INITIAL: {
Expand Down

0 comments on commit 14fac01

Please sign in to comment.