Fix undeclared variable
This commit is contained in:
parent
fb6b86bf7f
commit
63a85b7570
1 changed files with 1 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
export const template = (strings, ...args) => {
|
export const template = (strings, ...args) => {
|
||||||
let buf = []
|
let buf = []
|
||||||
for (i=0;i<strings.length;i++) {
|
for (let i=0;i<strings.length;i++) {
|
||||||
buf.push(strings[i], args[i])
|
buf.push(strings[i], args[i])
|
||||||
}
|
}
|
||||||
let template = document.createElement("template")
|
let template = document.createElement("template")
|
||||||
|
|
Loading…
Reference in a new issue