Closed OliverJAsh closed 10 years ago
res.send({ foo: somePromise });
somePromise is resolved with an object that contains another promise, i.e.:
somePromise
someDeferred.resolve({ bar: someOtherPromise });
express-promise should resolve someOtherPromise, but it stops at somePromise.
someOtherPromise
Absolutely agree with this. Required feature really.
somePromise
is resolved with an object that contains another promise, i.e.:express-promise should resolve
someOtherPromise
, but it stops atsomePromise
.