Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

unidecode

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unidecode - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

4

package.json

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc