Skip to content

Instantly share code, notes, and snippets.

@natasv
Created January 28, 2016 20:06
Show Gist options
  • Save natasv/d5a51ff1e35d579389dc to your computer and use it in GitHub Desktop.
Save natasv/d5a51ff1e35d579389dc to your computer and use it in GitHub Desktop.
const stream = {
each: (callback) => {
setTimeout(() => callback(1), 1000);
setTimeout(() => callback(2), 2000);
setTimeout(() => callback(3), 3000);
}
}
createStream.each(console.log)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment