Bugfixes:
- Fix
promisify
not retaining custom properties of the function. This enables promisifying the"request"
module's export function and its methods at the same time. - Fix
promisifyAll
methods being dependent onthis
when they are not originally dependent onthis
. This enables e.g. passing promisifiedfs
functions directly as callbacks without having to bind them tofs
. - Fix
process.nextTick
being used oversetImmediate
in node.