Skip to content

Commit

Permalink
parse to object
Browse files Browse the repository at this point in the history
  • Loading branch information
ianjorgensen committed Nov 20, 2011
1 parent 5e83fc4 commit 0269e5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ exports.parse = function(file, callback) {
xml += data;
});
xlhtml.on('exit', function() {
callback(null, xmlParser.toJson(xml));
callback(null, xmlParser.toJson(xml, {object: true}));
});
});
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name":"xls",
"version":"0.5.0",
"version":"0.5.1",
"description":"convert xls to json",
"author":[
"Ian Jørgensen <[email protected]>"
Expand Down

0 comments on commit 0269e5b

Please sign in to comment.