(obj, hookMethods, fn, classHook, context, proxyHandler)
| 498 | |
| 499 | /*Hook after the source function is run */ |
| 500 | after (obj, hookMethods, fn, classHook, context, proxyHandler) { |
| 501 | return this.hook(obj, hookMethods, fn, 'after', classHook, context, proxyHandler) |
| 502 | } |
| 503 | |
| 504 | /* Replace the function to be hooked, no longer run the source function, |
| 505 | and replace it with running other logic */ |