Skip to content

Instantly share code, notes, and snippets.

@adamloving
Created September 24, 2015 18:09
Show Gist options
  • Save adamloving/534601a2ae9e84628a19 to your computer and use it in GitHub Desktop.
Save adamloving/534601a2ae9e84628a19 to your computer and use it in GitHub Desktop.
When.js spread function turns array of parameters into arguments.
w = require 'when'
w.all [
w.resolve(1)
w.resolve(2)
]
.then console.log
w.all [
w.resolve('a')
w.resolve('b')
]
.spread (x, y) ->
console.log 'x', x
console.log 'y', y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment