Skip to content

Commit fec4e4d

Browse files
authored
Merge pull request #9 from golyalpha/patch-1
Fixup for 'use strict'
2 parents 09272d6 + ddfc0ba commit fec4e4d

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)