Skip to content

Instantly share code, notes, and snippets.

@silverbucket
Forked from danmactough/if-piper.js
Created December 2, 2013 17:22
Show Gist options
  • Save silverbucket/7753033 to your computer and use it in GitHub Desktop.
Save silverbucket/7753033 to your computer and use it in GitHub Desktop.
var feed = 'http://somefeed.com/rss'
var req = request(feed)
req.on('response', function (response) {
if (sometest(feed)) {
req.pipe(iconv).pipe(parser)
}
else {
req.pipe(parser)
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment