( a: EventPriority, b: EventPriority, )
| 35 | } |
| 36 | |
| 37 | export function lowerEventPriority( |
| 38 | a: EventPriority, |
| 39 | b: EventPriority, |
| 40 | ): EventPriority { |
| 41 | return a === 0 || a > b ? a : b; |
| 42 | } |
| 43 | |
| 44 | export function isHigherEventPriority( |
| 45 | a: EventPriority, |
no outgoing calls
no test coverage detected