| Conditions | 4 |
| Paths | 6 |
| Total Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | export const fire = (name, events, scope, ...args) => ( |
||
| 2 | events && name && typeof events[name] === 'function' |
||
| 3 | ? events[name].apply(scope, args) |
||
| 4 | : undefined |
||
| 5 | ); |
||
| 6 |