[フレーム]
Last Updated: February 25, 2016
·
349
· 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);
 });
 }
});

AltStyle によって変換されたページ (->オリジナル) /