Skip to content

Commit ddfc0ba

Browse files
authored
Fixup for 'use strict'
Seems num wasn't declared properly.
1 parent 163388b commit ddfc0ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

transpiler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
} else {
5555
(function () {
5656
var filename;
57-
for (num = 0; num < scripts.data.length; num++) {
57+
for (var num = 0; num < scripts.data.length; num++) {
5858
filename = scripts.name[num] = scripts.name[num].slice(scripts.name[num].lastIndexOf('/') + 1);
5959
var src = scripts.data[num];
6060
source += ts.transpile(src);

0 commit comments

Comments
 (0)