Skip to content

Commit d02f2d9

Browse files
authored
Update ConvertBase
1 parent 2231fb8 commit d02f2d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Conversions/ConvertBase

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const microConvert = (n, base1, base2) => {
99
return converted;
1010
};
1111

12-
const convert = (num, frombase, tobase) => {
12+
const convertBase = (num, frombase, tobase) => {
1313
return microConvert(microConvert(num, frombase, 10), 10, tobase);
1414
};
1515

0 commit comments

Comments
 (0)