1.1.0 • Published 6 years ago

simple-node-promisify v1.1.0

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

Promisify

nodeCallback Promise,deprecated in favor of util.promisify

Example

const fs = require("fs");
const promisify = require("simple-node-promisify");

const read = promisify(fs.readFile);

read("./hello.txt", "utf8")
  .then(res => console.assert(res === "Hello,Promise!", "test fail!"))
  .catch(console.log);

License

MIT