This library convert number to word in Indian Number System.
Example "2309" = "Two thousand three hundred and nine"
Import the library as following:
import NumberToWordUse the static function of the NumberToWord as following to convert the number:
NumberToWord.convert(2309) //Output: Two thousand three hundred and nineor
Use the extension on Integer as following:
print(2309.toWord) //Output: Two thousand three hundred and nineNumberToWord is released under the MIT License.