spacer.js.flow 174 B

123456789
  1. /* @flow */
  2. export default (times: number, tabStop: number): string => {
  3. if (times === 0) {
  4. return '';
  5. }
  6. return new Array(times * tabStop).fill(' ').join('');
  7. };