(ee, fn)
| 517 | } |
| 518 | |
| 519 | function wrapToDomain(ee, fn) { |
| 520 | return function () { |
| 521 | if (Events.usingDomains && ee.domain) { |
| 522 | ee.domain.enter(); |
| 523 | fn.apply(this, arguments); |
| 524 | ee.domain.exit(); |
| 525 | } else { |
| 526 | fn.apply(this, arguments); |
| 527 | } |
| 528 | }; |
| 529 | } |
no outgoing calls
no test coverage detected