Socket
Socket
Sign inDemoInstall

ini

Package Overview
Dependencies
0
Maintainers
7
Versions
25
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.1.0 to 4.1.1

7

lib/ini.js

@@ -11,4 +11,5 @@ const { hasOwnProperty } = Object.prototype

opt.whitespace = opt.whitespace === true || opt.align === true
// The `typeof` check is required because accessing the `process` directly fails on browsers.
/* istanbul ignore next */
opt.platform = opt.platform || process?.platform
opt.platform = opt.platform || (typeof process !== 'undefined' && process.platform)
opt.bracketedArray = opt.bracketedArray !== false

@@ -176,4 +177,4 @@

if (!hasOwnProperty.call(out, k) ||
typeof out[k] !== 'object' ||
Array.isArray(out[k])) {
typeof out[k] !== 'object' ||
Array.isArray(out[k])) {
continue

@@ -180,0 +181,0 @@ }

@@ -5,3 +5,3 @@ {

"description": "An ini encoder/decoder for node",
"version": "4.1.0",
"version": "4.1.1",
"repository": {

@@ -24,3 +24,3 @@ "type": "git",

"@npmcli/eslint-config": "^4.0.0",
"@npmcli/template-oss": "4.13.0",
"@npmcli/template-oss": "4.15.1",
"tap": "^16.0.1"

@@ -38,3 +38,3 @@ },

"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
"version": "4.13.0",
"version": "4.15.1",
"publish": "true"

@@ -41,0 +41,0 @@ },

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc