Package Exports
- @intocare/number-to-text
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@intocare/number-to-text) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@intocare/number-to-text
Extra number-to-text translations
Supported languages:
nl-befr-be
Install
npm install --save @intocare/number-to-textUsage
You can either load specific languages
const numberToText = require('number-to-text');
require('@intocare/number-to-text/nl-be');
numberToText.convertToText(10173, {language: 'nl-be'});
//=> tienduizend honderddrieënzeventigOr you can load all languages
const numberToText = require('number-to-text');
require('@intocare/number-to-text');
numberToText.convertToText(10173, {language: 'nl-be'});
//=> tienduizend honderddrieënzeventig
numberToText.convertToText(10173, {language: 'fr-be'});
//=> dix mille cent septante-troisRelated
- number-to-text - Check TypeScript type definitions