Remove unnecessary 'const' assignment

pull/1030/head
Alex Nozdriukhin 7 years ago
parent d07c334a70
commit 99c1f42821

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