empty (dependentKey) Ember.ComputedPropertypublic
A computed property that returns true if the value of the dependent property is null, an empty string, empty array, or empty function.
Example
let ToDoList = Ember.Object.extend({
isDone: Ember.computed.empty('todos')
});
let todoList = ToDoList.create({
todos: ['Unit Test', 'Documentation', 'Release']
});
todoList.get('isDone'); // false
todoList.get('todos').clear();
todoList.get('isDone'); // true
Parameters:
-
dependentKey
String
Returns:
-
Ember.ComputedProperty - computed property which negate the original value for property
Please login to continue.