ファイルへ移動
Kegan Myers fc5ebda7e3 Merge branch 'master' of github.com:terribleplan/promise-map-object 2015-07-08 00:19:22 -05:00
.gitignore initial commit 2015-07-07 23:42:25 -05:00
README.md Update README.md 2015-07-07 23:50:43 -05:00
index.js lodash 2015-07-08 00:17:07 -05:00
package.json bump 2015-07-08 00:18:34 -05:00

README.md

promise-map-object

A fairly common pattern is to use _ to map an array into promises, then to call Q.all on that array. This library takes that idea a little bit further and now allows you to map an object's values through promises.

Usage

var pmo = require("promise-map-object");

var a = {
  foo: { name: "asdf", age: {$gt: 13} },
  bar: { age: {$lte: 13} }
}

pmo(a, function(query) {
  return db(query); //some database query promise, or similar
}).then(function(mappedA) {
  console.log(mappedA); //res.json, or doing something else with it
});