Skip to content

Instantly share code, notes, and snippets.

@Richienb
Created June 9, 2020 08:05
Show Gist options
  • Save Richienb/af74263ea6f94ef399d402505fc49466 to your computer and use it in GitHub Desktop.
Save Richienb/af74263ea6f94ef399d402505fc49466 to your computer and use it in GitHub Desktop.
p-spread
const pSpread = require("p-spread")
pSpread(Promise.resolve([1, 2]), console.log)
module.exports = async (promise, iterator) => iterator(...await promise)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment