Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorForrest L Norvell <forrest@npmjs.com>2015-02-13 12:29:59 +0300
committerForrest L Norvell <forrest@npmjs.com>2015-02-13 12:29:59 +0300
commita0a262047647d9e2690cebe5a89e6a0dd33202bb (patch)
tree17fefb5ffa1b614571b67703fc997971b7f1234e /node_modules/ini/ini.js
parent7857712bcd08534117178328cab0d2076ca5387c (diff)
ini@1.3.3
allow embedded, quoted equals signs
Diffstat (limited to 'node_modules/ini/ini.js')
-rw-r--r--node_modules/ini/ini.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/node_modules/ini/ini.js b/node_modules/ini/ini.js
index 1e232e743..ddf5bd9cc 100644
--- a/node_modules/ini/ini.js
+++ b/node_modules/ini/ini.js
@@ -145,7 +145,7 @@ function isQuoted (val) {
function safe (val) {
return ( typeof val !== "string"
- || val.match(/[\r\n]/)
+ || val.match(/[=\r\n]/)
|| val.match(/^\[/)
|| (val.length > 1
&& isQuoted(val))