
A tiny JavaScript utility that converts a decimal number to roman numerals. Works both for browser and node.js.
How to use it:
1. Install and import the caesarr.
# NPM $ npm i caesarr --save
const roman = require('caesarr');2. Converts a number to roman numeral.
roman(123); => CXXIII







