Comparing version 0.1.0 to 0.1.1
@@ -5,4 +5,4 @@ { | ||
"keywords": ["unidecode","unicode","utf8"], | ||
"version": "0.1.0", | ||
"homepage": "http://", | ||
"version": "0.1.1", | ||
"homepage": "http://blog.fgribreau.com/2012/05/unidecode-for-javascript-nodejs.html", | ||
"dependencies": { }, | ||
@@ -9,0 +9,0 @@ "repository": "git@github.com:FGRibreau/node-unidecode.git", |
@@ -31,2 +31,5 @@ /** | ||
//(d7) 215 > h < 249 (f9) no supported | ||
if(h > 215 && h < 249) return ''; | ||
if (!tr[h]) { | ||
@@ -41,3 +44,3 @@ tr[h] = require("./data/x" + dec2hex(h) + ".js"); | ||
function dec2hex(i) { | ||
return (i+0x100).toString(16).substr(-2).toUpperCase(); | ||
return (i+0x100).toString(16).substr(-2); | ||
} | ||
@@ -44,0 +47,0 @@ |
Sorry, the diff of this file is not supported yet
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
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
318440
1336
1