Socket
Socket
Sign inDemoInstall

parse-ini-string

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

parse-ini-string - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

4

build/cjs/src/index.js

@@ -54,3 +54,3 @@ 'use strict';

p[key] = [];
} else if (!Array.isArray(p[key])) {
} else if (!isArray(p[key])) {
p[key] = [p[key]];

@@ -72,3 +72,3 @@ }

}
switch (value) {
switch (value.toLowerCase()) {
case 'true':

@@ -75,0 +75,0 @@ case 'false':

@@ -49,3 +49,3 @@ var commentReg = /^\s*[;]/;

p[key] = [];
} else if (!Array.isArray(p[key])) {
} else if (!isArray(p[key])) {
p[key] = [p[key]];

@@ -67,3 +67,3 @@ }

}
switch (value) {
switch (value.toLowerCase()) {
case 'true':

@@ -70,0 +70,0 @@ case 'false':

{
"name": "parse-ini-string",
"version": "0.0.3",
"version": "0.0.4",
"description": "PHP like parse-ini-string, support multi line",

@@ -5,0 +5,0 @@ "repository": "react-atomic/react-atomic-organism",

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