Last Updated: February 25, 2016
·
271
· sgtpooki

lodash mixin _.objectRange: Create an array of objects from template

Create an array of objects using another object as a template.

_.mixin({
    'objectRange': function objectRange(count, object) {
        return _.range(count).map(function () {
            return _.clone(object);
        });
    }
});