Hotfix convertRomanToArabic

This commit is contained in:
Divlo 2019-10-08 13:48:24 +02:00
parent d90bc65c61
commit 0b0544d783

View File

@ -363,6 +363,9 @@ function convertRomanToArabic(str) {
//remove the matched Roman letter from the beginning
}
}
if (str != '') {
result = 0;
}
return result;
}