Skip to content

Instantly share code, notes, and snippets.

@ArtskydJ
Last active August 29, 2015 14:17
Show Gist options
  • Save ArtskydJ/21e10deb1956a80b9a2a to your computer and use it in GitHub Desktop.
Save ArtskydJ/21e10deb1956a80b9a2a to your computer and use it in GitHub Desktop.
randomly-delay-stream
through2(function (chunk, encoding, callback) {
setTimeout(function () {
this.push(chunk)
return callback()
}, Math.round(Math.random()*3000))
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment