npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

thunk-to-promise

1.0.1

@hemanth

npmHomeRepoSnykSocket
Downloads:166
$ npm install thunk-to-promise
DailyWeeklyMonthlyYearly

thunk-to-promise

Converts a Thunk to a Promise. (Picked from co)

Get it: npm install --save thunk-to-promise

Sample usage:

var readThunk = require("thunkify")(fs.read);

var thunkToPromise = require("thunk-to-promise");

var readPromise = thunkToPromise(readThunk);

// readPromisse is your thunk, that got converted to a Promise.