Merge pull request #1030 from alexnoz/patch-1

Remove unnecessary 'const' assignment
pull/7738/head
Rich Harris 8 years ago committed by GitHub
commit 8e9204b7c8

@ -159,7 +159,6 @@ export class Parser {
const match = pattern.exec(this.template.slice(start));
if (match) {
const start = this.index;
this.index = start + match.index;
return this.template.slice(start, this.index);
}

Loading…
Cancel
Save