Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
addServiceEvents: function(item) {
this.addSoundEvents(item);
SERVICE_EVENT_MAP.forEach(e => {
item.on(e.event, (data) => {
this.eventsList.pushObject({name: e.event, data: data, type: 'service'})
});
});
},