A Promise.object implementation that deep traverses objects and resolves any Promises.
## Installation
```shell
npm install --save @codefeathers/promise.object
```
## Usage
```JavaScript
Promise.object(<Object>).then(...)
```
> Note that importing this library does not pollute the Promise namespace. You should assign it to `Promise.object` yourself (or whatever you please). It does not interfere with native Promises, or your own Promises A+ compatible library such as Bluebird. It however uses Promises, so if you need to polyfill this is your chance.