Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@nodecraft/ini

Package Overview
Dependencies
Maintainers
5
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nodecraft/ini - npm Package Compare versions

Comparing version 2.2.1 to 2.2.2

7

ini.js

@@ -5,4 +5,2 @@ 'use strict';

const eol = require('os').EOL;
function isConstructorOrProto(obj, key){

@@ -27,2 +25,5 @@ return key === 'constructor' && typeof obj[key] === 'function' || key === '__proto__';

}
options.platform = options.platform || (typeof process !== 'undefined' && process.platform);
const eol = options.platform === 'win32' ? '\r\n' : '\n';
const separator = options.whitespace ? ' = ' : '=';

@@ -239,2 +240,2 @@

unsafe,
};
};
{
"name": "@nodecraft/ini",
"version": "2.2.1",
"version": "2.2.2",
"description": "An ini encoder/decoder for node",

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

@@ -0,0 +0,0 @@ An ini format parser and serializer for node.

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