UNPKG

vue-carousel-3d

Version:

Beautiful, flexible and touch supported 3D Carousel for Vue.js

19 lines (14 loc) 325 B
/*! * repeat-element <https://github.com/jonschlinkert/repeat-element> * * Copyright (c) 2015-present, Jon Schlinkert. * Licensed under the MIT license. */ 'use strict'; module.exports = function repeat(ele, num) { var arr = new Array(num); for (var i = 0; i < num; i++) { arr[i] = ele; } return arr; };