kata-to-french
v1.0.1
Published
Solution to kata to french converter
Readme
Kata To French Converter
This package lets you convert array of numbers to the equivalent array of french numbers (in words)
How to use
Install the package with the following comand:
$ npm i --save-dev kata-to-frenchIn your script:
import { Converter } from 'kata-to-french';
const converter = new Converter();
console.log(converter.convertDigits([1,4,5,6]))Sample output: ['un', 'quatre', 'cinq', 'six',]
