1.0.1 • Published 2 years ago

kata-to-french v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

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-french

In 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',