Skip to content

Commit cf1ede9

Browse files
committed
修复预处理代码中的var let
1 parent 924e26e commit cf1ede9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data/pre_common/functions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ function combineCharObj(c , fromMap1, fromMap2)
207207

208208
function unionSet(setA, setB) {
209209
let _union = new Set(setA);
210-
for ( var let elem of setB) {
210+
for ( var elem of setB) {
211211
_union.add(elem);
212212
}
213213
return _union;

0 commit comments

Comments
 (0)