Last active
August 29, 2015 14:05
-
-
Save herzi/aaeb4670fe11d963a18f to your computer and use it in GitHub Desktop.
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
/** | |
* Turns: { | |
* keyOne: promiseOne, | |
* keyTwo: promiseTwo | |
* } into { | |
* keyOne: resolutionOne, | |
* keyTwo: resolutionTwo | |
* } | |
* | |
* (To avoid messing around with unclear array indices when calling different | |
* kinds of async ops; e.g. different database queries and some file system call) | |
*/ | |
function params(object) { | |
var keys = Object.keys(object); | |
return Q.all(keys.map(function (key) { | |
return Q(object[key]); | |
})).then(function (values) { | |
var result = {}; | |
if (values.length !== keys.length) { | |
throw new Error(); | |
} | |
for (var i = 0; i < keys.length; i += 1) { | |
result[keys[i]] = values[i]; | |
} | |
return result; | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment