@nodecraft/ini
Advanced tools
Comparing version 2.2.1 to 2.2.2
@@ -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. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
13269
217