UNPKG

number-to-rupee

Version:

Number two Rupee is a javascript library for converting numbers in Indian rupee word.

8 lines (7 loc) 223 B
/** * Convert the number into Indian rupees * @param num {number} Number to be converted * @returns {string} Indian Rupees */ declare const numberTwoRupee: (num: number) => string; export default numberTwoRupee;