New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

extes

Package Overview
Dependencies
Maintainers
1
Versions
107
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

extes - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

13

_helper/utf8.esm.js

@@ -5,2 +5,5 @@ /**

**/
const UTF8_DECODE_CHUNK_SIZE = 100;
/**

@@ -98,3 +101,11 @@ * Encode given input js string using utf8 format

}
return String.fromCodePoint(...codePoints);
let result_string = "";
while(codePoints.length > 0) {
const chunk = codePoints.splice(0, UTF8_DECODE_CHUNK_SIZE);
result_string += String.fromCharCode(...chunk);
}
return result_string;
}

2

package.json
{
"name": "extes",
"version": "2.0.0",
"version": "2.0.1",
"description": "A tiny library that extends native js with some handy tools",

@@ -5,0 +5,0 @@ "main": "index.mjs",

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