9 lines
193 B
JavaScript
9 lines
193 B
JavaScript
import computed from 'ember-computed';
|
|
import { isPresent } from 'ember-utils';
|
|
|
|
export default function(key) {
|
|
return computed(key, function() {
|
|
return isPresent(this.get(key));
|
|
});
|
|
}
|