Skip to content

Commit

Permalink
修复预处理代码中的var let
Browse files Browse the repository at this point in the history
  • Loading branch information
garywill committed Mar 22, 2024
1 parent 924e26e commit cf1ede9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data/pre_common/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ function combineCharObj(c , fromMap1, fromMap2)

function unionSet(setA, setB) {
let _union = new Set(setA);
for ( var let elem of setB) {
for ( var elem of setB) {
_union.add(elem);
}
return _union;
Expand Down

0 comments on commit cf1ede9

Please sign in to comment.