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

grunt-concat-i18n

Package Overview
Dependencies
Maintainers
1
Versions
32
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-concat-i18n - npm Package Compare versions

Comparing version 0.1.12 to 0.1.13

2

npm-shrinkwrap.json
{
"name": "grunt-concat-i18n",
"version": "0.1.12",
"version": "0.1.13",
"dependencies": {

@@ -5,0 +5,0 @@ "abbrev": {

{
"name": "grunt-concat-i18n",
"version": "0.1.12",
"version": "0.1.13",
"private": false,

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -76,3 +76,4 @@ module.exports = function(grunt) {

let content = fs.readFileSync(localSrc[j]);
concat += iconv.decode(content, 'latin1').replace(/\'\'/g, '\'');
// This will parse the string, decode any Unicode codepoints (\u6040) and replace our double '' for strings with a single '
concat += iconv.decode(content, 'latin1').replace(/\\u([0-9a-fA-F]{4})/g, (m,cc)=>String.fromCharCode("0x" + cc)).replace(/\'\'/g, '\'');
}

@@ -79,0 +80,0 @@ fs.writeFileSync(output, concat);

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