Comparing version 0.4.1 to 0.4.2
@@ -51,3 +51,2 @@ exports.parse = parse; | ||
} | ||
return (deststruct); | ||
} | ||
@@ -58,6 +57,8 @@ var options = { | ||
xml2js.parseString (opmltext, options, function (err, jstruct) { | ||
var deststruct = new Object (); | ||
var theOutline = convert (jstruct.opml, deststruct); | ||
var theOutline = { | ||
opml: new Object () | ||
} | ||
convert (jstruct.opml, theOutline.opml); | ||
callback (theOutline); | ||
}); | ||
} |
@@ -6,3 +6,3 @@ { | ||
"license": "MIT", | ||
"version": "0.4.1", | ||
"version": "0.4.2", | ||
"main": "opmltojs.js", | ||
@@ -9,0 +9,0 @@ "repository": { |
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
59
3445