Skip to content

Commit 2b41272

Browse files
committed
Fix missing semicolon
1 parent 67e79b8 commit 2b41272

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/template.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function getAssetContent(filename) {
2727
}
2828

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

3333
function getScript(filename, mode) {

0 commit comments

Comments
 (0)