Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
allTimeZoneOptions: Ember.computed('timeZoneOptions.[]', function() {
return [TimeZoneOption.create({
title: 'Your Time Zone',
abbreviation: timeZoneAbbreviation(new Date())
})].concat(this.get('timeZoneOptions'));
}),
abbreviation: Ember.computed('value', function() {
return timeZoneAbbreviation(new Date(), this.get('value'));
}),