mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-06 12:27:25 +00:00
10 lines
174 B
Plaintext
10 lines
174 B
Plaintext
![]() |
/* @flow */
|
||
|
|
||
|
export default (times: number, tabStop: number): string => {
|
||
|
if (times === 0) {
|
||
|
return '';
|
||
|
}
|
||
|
|
||
|
return new Array(times * tabStop).fill(' ').join('');
|
||
|
};
|