Skip to content

Instantly share code, notes, and snippets.

@herzi
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save herzi/aaeb4670fe11d963a18f to your computer and use it in GitHub Desktop.
Save herzi/aaeb4670fe11d963a18f to your computer and use it in GitHub Desktop.
/**
* 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