promise-proxy
v1.0.1
Published
```js // usage: const { fs } = require('promise-proxy')
Readme
promise-proxy
// usage:
const { fs } = require('promise-proxy')
// you can now use promised fs:
fs.writeFile(/**/).then(/**/)
// you can extract methods directly
const { fs: { writeFile } } = require('promise-proxy')
// this module is lazy and rely on `util.promisify` and `Proxy`
// to avoid repetition in requires