Skip to content

Instantly share code, notes, and snippets.

@gdekefir
Created August 3, 2017 19:12
Show Gist options
  • Save gdekefir/018eef11d416c176f68eadab4ce9fc11 to your computer and use it in GitHub Desktop.
Save gdekefir/018eef11d416c176f68eadab4ce9fc11 to your computer and use it in GitHub Desktop.
composeP
const getProm = val => new Promise(resolve => resolve(val));
composeP(inc, getProm)(5).then(res => console.log(res)) //-> Promise 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment