diff --git a/lib/node-iniparser.js b/lib/node-iniparser.js index 93397a3..c3c9807 100644 --- a/lib/node-iniparser.js +++ b/lib/node-iniparser.js @@ -56,8 +56,6 @@ function parse(data){ var match = line.match(regex.section); value[match[1]] = {}; section = match[1]; - }else if(line.length == 0 && section){ - section = null; }; }); return value;