react-code-dataset / tabler-react /example /src /ComponentDemo /react-element-to-jsx-string /formatter /spacer.js.flow
| /* @flow */ | |
| export default (times: number, tabStop: number): string => { | |
| if (times === 0) { | |
| return ''; | |
| } | |
| return new Array(times * tabStop).fill(' ').join(''); | |
| }; | |