CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
README.md67 linesDownload Raw Back to thenify-all
1 2# thenify-all3 4[![NPM version][npm-image]][npm-url]5[![Build status][travis-image]][travis-url]6[![Test coverage][coveralls-image]][coveralls-url]7[![Dependency Status][david-image]][david-url]8[![License][license-image]][license-url]9[![Downloads][downloads-image]][downloads-url]10[![Gittip][gittip-image]][gittip-url]11 12Promisifies all the selected functions in an object.13 14```js15var thenifyAll = require('thenify-all');16 17var fs = thenifyAll(require('fs'), {}, [18  'readFile',19  'writeFile',20]);21 22fs.readFile(__filename).then(function (buffer) {23  console.log(buffer.toString());24});25```26 27## API28 29### var obj = thenifyAll(source, [obj], [methods])30 31Promisifies all the selected functions in an object.32 33- `source` - the source object for the async functions34- `obj` - the destination to set all the promisified methods35- `methods` - an array of method names of `source`36 37### var obj = thenifyAll.withCallback(source, [obj], [methods])38 39Promisifies all the selected functions in an object and backward compatible with callback.40 41- `source` - the source object for the async functions42- `obj` - the destination to set all the promisified methods43- `methods` - an array of method names of `source`44 45### thenifyAll.thenify46 47Exports [thenify](https://github.com/thenables/thenify) this package uses.48 49[gitter-image]: https://badges.gitter.im/thenables/thenify-all.png50[gitter-url]: https://gitter.im/thenables/thenify-all51[npm-image]: https://img.shields.io/npm/v/thenify-all.svg?style=flat-square52[npm-url]: https://npmjs.org/package/thenify-all53[github-tag]: http://img.shields.io/github/tag/thenables/thenify-all.svg?style=flat-square54[github-url]: https://github.com/thenables/thenify-all/tags55[travis-image]: https://img.shields.io/travis/thenables/thenify-all.svg?style=flat-square56[travis-url]: https://travis-ci.org/thenables/thenify-all57[coveralls-image]: https://img.shields.io/coveralls/thenables/thenify-all.svg?style=flat-square58[coveralls-url]: https://coveralls.io/r/thenables/thenify-all59[david-image]: http://img.shields.io/david/thenables/thenify-all.svg?style=flat-square60[david-url]: https://david-dm.org/thenables/thenify-all61[license-image]: http://img.shields.io/npm/l/thenify-all.svg?style=flat-square62[license-url]: LICENSE63[downloads-image]: http://img.shields.io/npm/dm/thenify-all.svg?style=flat-square64[downloads-url]: https://npmjs.org/package/thenify-all65[gittip-image]: https://img.shields.io/gratipay/jonathanong.svg?style=flat-square66[gittip-url]: https://gratipay.com/jonathanong/67