mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-05 20:10:57 +00:00
These are all the files from the Tabler react repos, made to work with laravel and webpack.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
/* @flow */
|
||||
|
||||
export default (times: number, tabStop: number): string => {
|
||||
if (times === 0) {
|
||||
return '';
|
||||
}
|
||||
|
||||
return new Array(times * tabStop).fill(' ').join('');
|
||||
};
|
Reference in New Issue
Block a user