Anthony Ng

Results 13 comments of Anthony Ng

Pull Request #14 was merged and should fix this deprecation warning. Waiting for it to be released.

It seems like `hook.register` would work in your situation. ```js hook.intercept({ register:(tapInfo) => { console.log(tapInfo) } }) ``` Based on the documentation, I would have expected `tap` and `register` to...

I looked through the code. When a hook is triggered, `interceptor.call` and `interceptor.tap` are both called. It seems the only difference is that `interceptor.call` is called with the `arguments` that...