UNPKG

currency-in-words

Version:

A light-weight, fast and efficient lib that converts currency or any numbers to corresponding words

12 lines 562 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.caseOne = exports.twoDigit = exports.singleDigit = void 0; // French (fr.js) exports.singleDigit = ['', 'un', 'deux', 'trois', 'quatre', 'cinq', 'six', 'sept', 'huit', 'neuf']; exports.twoDigit = [ '', 'dix', 'vingt', 'trente', 'quarante', 'cinquante', 'soixante', 'soixante-dix', 'quatre-vingt', 'quatre-vingt-dix' ]; exports.caseOne = [ '', 'onze', 'douze', 'treize', 'quatorze', 'quinze', 'seize', 'dix-sept', 'dix-huit', 'dix-neuf' ]; //# sourceMappingURL=fr.js.map