Skip to content

Commit

Permalink
Fix missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
realityking committed Nov 24, 2020
1 parent 67e79b8 commit 2b41272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/template.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function getAssetContent(filename) {
}

function html(strings, ...values) {
return strings.map((string, index) => `${string}${values[index] || ''}`).join('')
return strings.map((string, index) => `${string}${values[index] || ''}`).join('');
}

function getScript(filename, mode) {
Expand Down

0 comments on commit 2b41272

Please sign in to comment.