Comparing version 3.1.1 to 3.1.2
{ | ||
"name": "eurodigit", | ||
"version": "3.1.1", | ||
"version": "3.1.2", | ||
"description": "Convert Hindu-Arabic numerals of different scripts into Western Arabic (European) digits.", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
var to_euro = require('./to_euro'); | ||
module.exports = function(s) { | ||
return Number.parseInt(to_euro(s)); | ||
return parseInt(to_euro(s), 10); | ||
}; |
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
8639