Skip to content

Commit 4d16be8

Browse files
committed
Merge pull request #104 from sgri/master
Display nested objects.
2 parents 99ee7e2 + bb21256 commit 4d16be8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/iconv.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function fetch(feed) {
3434
feedparser.on('readable', function() {
3535
var post;
3636
while (post = this.read()) {
37-
console.log(post);
37+
console.log(JSON.stringify(post, ' ', 4));
3838
}
3939
});
4040
}

0 commit comments

Comments
 (0)