funcunit
Version:
<!-- @hide title
21 lines (13 loc) • 660 B
Markdown
[](https://travis-ci.org/matthewp/pdenodeify)
Dead simple `denodeify` function for Promises. Supports native promises, when they come to Node and/or the browser, falling back to [es6-promise](https://github.com/jakearchibald/es6-promise) if the global isn't available. Since the polyfill is optional you'll need to include it yourself (in Node just make sure it's installed).
```js
var denodeify = require('pdenodeify');
var readFile = denodeify(require('fs').readFile);
readFile('path/to/file').then(function(data) {
// Use data
});
```
MIT