Skip to content

Commit 5f87083

Browse files
committed
change let to var
1 parent 3f212fb commit 5f87083

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ function writtenNumber(n, options) {
187187

188188
// Languages that have separators for all cardinals.
189189
if (language.allSeparator) {
190-
for (let j = 0; j < ret.length-1; j++) {
190+
for (var j = 0; j < ret.length-1; j++) {
191191
ret[j] = language.allSeparator + ret[j];
192192
}
193193
}

0 commit comments

Comments
 (0)