mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
644 B
29 lines
644 B
exports.parse = function(d) {
|
|
var ini = {'-':{}};
|
|
|
|
var section = '-';
|
|
|
|
var lines = d.split('\n');
|
|
for (var i=0; i<lines.length; i++) {
|
|
var line = lines[i].trim(),
|
|
rem = line.indexOf(";");
|
|
|
|
if (rem !== -1) line = line.substr(0, rem);
|
|
|
|
var re = /^\[([^\]]*)\]$|^([^=]+)(=(.*))?$/i;
|
|
|
|
var match = line.match(re);
|
|
if (match != null) {
|
|
if (match[1] != undefined) {
|
|
section = match[1].trim();
|
|
ini[section] = {};
|
|
} else {
|
|
var key = match[2].trim(),
|
|
value = (match[3]) ? (match[4] || "").trim() : true;
|
|
ini[section][key] = value;
|
|
}
|
|
}
|
|
}
|
|
|
|
return ini;
|
|
}
|
|
|