Created
September 24, 2015 18:09
-
-
Save adamloving/534601a2ae9e84628a19 to your computer and use it in GitHub Desktop.
When.js spread function turns array of parameters into arguments.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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