mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-05 20:10:57 +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('');
|
|
};
|