Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
setServerProperty = (name, value) => {
safeSet(this.server, name, value)
};
setProjectProperty = (name, value) => {
safeSet(this.project, name, value)
};
setApplicationNotificationProperty = (index, name, value) => {
if (index >= this.selectedApplicationNotifications.length || !this.selectedApplicationNotifications[index]) return;
let notification = this.selectedApplicationNotifications[index];
safeSet(notification, name, value);
this.selectedApplicationNotifications[index] = notification;
return true
};