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

json-to-properties

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

json-to-properties - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

2

package.json
{
"name": "json-to-properties",
"version": "1.1.1",
"version": "1.1.2",
"description": "A standalone utility to transform language files in JSON format into .properties files, and languages files in .properties format into JSON format.",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -106,2 +106,6 @@ var fs = require('fs'),

reader.on('line', function (line) {
// Skip comments lines (lines starting with #) and empty lines
if (line && (line.charAt(0) === '#' || line.charAt(0) === '!' || line.trim().length === 0)) {
return;
}
lines.push(line);

@@ -108,0 +112,0 @@ });

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