Skip to content

Commit

Permalink
Merge pull request #4 from node-migrator-bot/clean
Browse files Browse the repository at this point in the history
Hi! I fixed some calls to "sys" for you!
  • Loading branch information
Poetro committed Jun 24, 2012
2 parents 5dc69ae + 61b79c0 commit f9e6825
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -10,13 +10,13 @@ Note: If you're looking for a full DOM parser, you probably want [JSDom](http:/
Simple usage
--

var sys = require('sys'),
var util = require('util'),
fs = require('fs'),
xml2js = require('xml2js-expat');

var parser = new xml2js.Parser(function(result, error) {
if (!error) {
console.log(sys.inspect(result));
console.log(util.inspect(result));
}
else {
console.error(error);
Expand Down

0 comments on commit f9e6825

Please sign in to comment.