You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Node 8 introduced util.promisify to the standard library, which handles the simple use case of this library.
It also allows functions to opt-in to specifying how they are promisified, which means you can promisify even some non-node-style callback functions (like setTimeout). Can we add a note in the readme stating if they use Node 8, they may want to use it instead?
The text was updated successfully, but these errors were encountered:
Node 8 introduced
util.promisify
to the standard library, which handles the simple use case of this library.It also allows functions to opt-in to specifying how they are promisified, which means you can promisify even some non-node-style callback functions (like
setTimeout
). Can we add a note in the readme stating if they use Node 8, they may want to use it instead?The text was updated successfully, but these errors were encountered: