UNPKG

digit-to-words-nepali

Version:

A comprehensive TypeScript library for converting numbers to words in English and Nepali languages. Supports numbers up to 10^39 (Adanta Singhar), currency formatting, decimal handling with individual digit pronunciation, and BigInt. Zero dependencies, fu

8 lines (7 loc) 391 B
export * from "./types/converterTypes"; export * from "./types/mappingTypes"; export { digitToNepaliWords } from "./converters/nepaliConverter"; export { digitToEnglishWords } from "./converters/englishConverter"; export { unicodeToEnglishNumber } from "./utils/numberUtils"; export { conversionCache } from "./utils/cacheUtils"; export { ConverterFactory } from "./utils/converterFactory";