This package has been deprecated

Author message:

deprecated in favor of util.promisify

simple-node-promisify

1.1.0 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i simple-node-promisify

Weekly Downloads

1

Version

1.1.0

License

MIT

Last publish

Collaborators

  • islishude