Merge pull request #1030 from alexnoz/patch-1

Remove unnecessary 'const' assignment
pull/1033/head
Rich Harris 7 years ago committed by GitHub
commit c13b6ad6a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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