every (callback, target) Booleanpublic
Defined in packages/ember-runtime/lib/mixins/enumerable.js:556
Returns true if the passed function returns true for every item in the enumeration. This corresponds with the every() method in JavaScript 1.6. The callback method you provide should have the following signature (all parameters are optional): function(item, index, enumerable);
item is the current item in the iteration.
index is the current index in the iteration.
enumerable is the enume