0.1.0 • Published 9 years ago

pdenodeify v0.1.0

Weekly downloads
778
License
MIT
Repository
-
Last release
9 years ago

Build Status

pdenodeify

Dead simple denodeify function for Promises. Supports native promises, when they come to Node and/or the browser, falling back to 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).

Example

var denodeify = require('pdenodeify');
var readFile = denodeify(require('fs').readFile);

readFile('path/to/file').then(function(data) {
  // Use data
});

License

MIT