(code)
| 1325 | } |
| 1326 | } |
| 1327 | function ignore(code) { |
| 1328 | if (scheduler2._dp) { |
| 1329 | scheduler2._dp.ignore(code); |
| 1330 | } else { |
| 1331 | code(); |
| 1332 | } |
| 1333 | } |
| 1334 | function handleAddEvent(eventData) { |
| 1335 | if (scheduler2.getEvent(eventData.id)) { |
| 1336 | console.warn(`Event with ID ${eventData.id} already exists. Skipping add.`); |
no outgoing calls
no test coverage detected