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