README
@aryth/roman
Parse roman numerals to decimal number
Features
Install
$ npm install @aryth/roman
Usage
import { romanToDecimal } from '@aryth/roman'
const ROMAN = 'CDXXXIII'
console.log(romanToDecimal(ROMAN)) // 433
Parse roman numerals to decimal numbers
<script type="module">
import arythRoman from 'https://cdn.skypack.dev/@aryth/roman';
</script>
$ npm install @aryth/roman
import { romanToDecimal } from '@aryth/roman'
const ROMAN = 'CDXXXIII'
console.log(romanToDecimal(ROMAN)) // 433