Skip to content

Instantly share code, notes, and snippets.

@ktilcu
Last active January 4, 2018 18:44
Show Gist options
  • Select an option

  • Save ktilcu/8467480f217bbe82854e0bd444c8bccd to your computer and use it in GitHub Desktop.

Select an option

Save ktilcu/8467480f217bbe82854e0bd444c8bccd to your computer and use it in GitHub Desktop.
Promise.join - simply
const join = (fn, ...params) =>
Promise
.all(params)
.then(ps => fn.apply(null, ps));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment