1.1.0 • Published 6 years ago

number_to_string v1.1.0

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

This converts to number in to words This module is written in typescript

// first value
var firstString = curValue.get_string(3456);//three thousand  four hundred fifty six
console.log(firstString);

// second value
var secondString = curValue.get_string(9130456456);// nine hundred thirteen crore  four lakh  fifty six thousand  four hundred fifty six
console.log(secondString);
let curValue = new stringNumber.number_to_string();

// first value
let firstString = curValue.get_string(3456);//three thousand  four hundred fifty six
console.log(firstString);

// second value
let secondString = curValue.get_string(9130456456);// nine hundred thirteen crore  four lakh  fifty six thousand  four hundred fifty six
console.log(secondString);