8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5992138 commit 872b7adCopy full SHA for 872b7ad
ini.js
@@ -4,7 +4,7 @@ exports.stringify = exports.encode = encode
4
exports.safe = safe
5
exports.unsafe = unsafe
6
7
-var eol = process.platform === 'win32' ? '\r\n' : '\n'
+var eol = typeof process !== 'undefined' && process.platform === 'win32' ? '\r\n' : '\n'
8
9
function encode (obj, opt) {
10
var children = []
0 commit comments