Convert roman numerals to arabic numbers (useful for books, outlines, documentation, slide decks, etc)
npm install deromanize> Convert roman numerals to arabic numbers (useful for books, outlines, documentation, slide decks, etc)
Install with npm:
``sh`
$ npm install --save deromanize
Install with yarn:
`sh`
$ yarn add deromanize
`js`
var deromanize = require('deromanize');
console.log(deromanize('LVIII'));
//=> 58
Inspired by this blog post by Steven Levithan.
* repeat-string: Repeat the given string n times. Fastest implementation for repeating a string. | homepage
* romanize: Convert arabic numbers to roman numerals (useful for books, outlines, documentation, slide decks, etc) | homepage")
* to-regex-range: Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than… more | homepage
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
_(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)_
To generate the readme, run the following command:
`sh`
$ npm install -g verbose/verb#dev verb-generate-readme && verb
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
`sh``
$ npm install && npm test
Jon Schlinkert
* github/jonschlinkert
* twitter/jonschlinkert
Copyright © 2017, Jon Schlinkert.
Released under the MIT License.
*
_This file was generated by verb-generate-readme, v0.5.0, on April 23, 2017._