(item)
| 345 | // Schedule or re-schedule a timer. |
| 346 | // The item must have been enroll()'d first. |
| 347 | function active(item) { |
| 348 | insertGuarded(item, true); |
| 349 | } |
| 350 | |
| 351 | // Internal APIs that need timeouts should use `unrefActive()` instead of |
| 352 | // `active()` so that they do not unnecessarily keep the process open. |
no test coverage detected
searching dependent graphs…