ampersand-collection-underscore-mixin [source]

A mixin for extending ampersand-collection with underscore methods.

If you're using an ampersand-rest-collection this is already mixed in for you.

Out of the box, ampersand-collections proxy the ES5 iteration methods already so you don't have to use this mixin, but if you want all the underscore methods, or better browser support, you can use this.

example

var Collection = require('ampersand-collection');
var underscoreMixin = require('ampersand-collection-underscore-mixin');


module.exports = Collection.extend(underscoreMixin, {
    sampleMethod: function () {
        // now we've got underscore methods 
        // we can call that are applied to models
        // in the collection.
        this.filter( ... );
        this.some( ... );
        this.each( ... )
    }
});