Skip to content
This repository was archived by the owner on Apr 14, 2021. It is now read-only.

Commit ade127d

Browse files
committed
Fixes stray ; in var declarations, plus some cleanup
1 parent 93c4235 commit ade127d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tools/Ldml2Json.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ var
2525
jsonpExp = /"(?!default)([\w$][\w\d$]+)":/g,
2626

2727
// Path to CLDR root
28-
cldr = process.argv[2];
28+
cldr = process.argv[2],
2929

3030
// Paths to required classes in the CLDR /tools/java folder
3131
jPath = cldr + '/tools/java/',
@@ -108,7 +108,8 @@ if (cldr) {
108108
}
109109
else
110110
console.log('\n');
111-
cldrToIntl();
111+
112+
cldrToIntl();
112113
});
113114
}
114115
else {

0 commit comments

Comments
 (0)