1.0.0 • Published 8 years ago

romanify v1.0.0

Weekly downloads
101
License
MIT
Repository
github
Last release
8 years ago

romanify Build Status

Convert Arabic-Indic numerals to their Roman equivalents.

Install

$ npm install --save romanify

Usage

ECMAScript 5:

var romanify = require('romanify')

romanify(2016) // => 'MMXVI'
romanify(0)    // => Error

ECMAScript 2015+:

import romanify from 'romanify'

romanify(2016) // => 'MMXVI'
romanify(0)    // => Error

License

MIT © Luís Rodrigues

1.0.0

8 years ago