Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "to-words", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "Converts Numbers (including decimal points) into words for Indian style.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -33,5 +33,5 @@ # Number to Words | ||
let toWords = require('to-words'); | ||
let words = toWords(452); // words = Four Hundred Fifty Two Rupees Only | ||
let words = toWords(452, {currency: true}); // words = Four Hundred Fifty Two Rupee Only | ||
words = toWords(452.36); // words = Four Hundred Fifty Two Rupee And Thirty Six Paise Only | ||
words = toWords(452.36, {currency: true}); // words = Four Hundred Fifty Two Rupee And Thirty Six Paise Only | ||
``` | ||
@@ -38,0 +38,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10495