UNPKG

react-carousel-query

Version:

A infinite carousel component made with react that handles the pagination for you.

10 lines (7 loc) 174 B
/* @flow */ export default (times: number, tabStop: number): string => { if (times === 0) { return ''; } return new Array(times * tabStop).fill(' ').join(''); };