(this: unknown)
| 86 | } |
| 87 | prototype[name] = ((delegate: Function) => { |
| 88 | const patched: any = function (this: unknown) { |
| 89 | return delegate.apply(this, bindArguments(<any>arguments, source + '.' + name)); |
| 90 | }; |
| 91 | attachOriginToPatched(patched, delegate); |
| 92 | return patched; |
| 93 | })(delegate); |
nothing calls this directly
no test coverage detected
searching dependent graphs…