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 7eb1a62 commit 8a5525b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/binding-parser.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
const STATE = {
INITIAL: bindingData => {
let escaped = false;
return (char, i) => {
return char => {
if (char === '\\') {
escaped = true;
} else if ((char === '{' || char === '[') && !escaped) {
Expand Down

0 comments on commit 8a5525b

Please sign in to comment.