Monkeypatch that lets you easily turn any async function or method into a thunk
npm install thunkousthunkous
========
Monkeypatch that lets you easily turn any async function or method into a thunk
Loosely based on fibrous
Ex:
``js`
fs.thunk.readFile("/tmp/hello.txt", "utf8")`
is the same asjs``
require("thunkify")(fs.readFile)("/tmp/hello.txt", "utf8")