* Wraps a callback function in a new function which will properly restore the current zone upon * invocation. * * The wrapped function will properly forward `this` as well as `arguments` to the `callback`. * * Before the function is wrapped the zone can intercept the `callback` by dec
(callback: F, source: string)
| 188 | * [Zone.runGuarded]. |
| 189 | */ |
| 190 | wrap<F extends Function>(callback: F, source: string): F; |
| 191 | |
| 192 | /** |
| 193 | * Invokes a function in a given zone. |
no outgoing calls
no test coverage detected