mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-05 03:52:59 +00:00
13 lines
247 B
JavaScript
13 lines
247 B
JavaScript
![]() |
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true,
|
||
|
});
|
||
|
|
||
|
exports.default = function(times, tabStop) {
|
||
|
if (times === 0) {
|
||
|
return "";
|
||
|
}
|
||
|
|
||
|
return new Array(times * tabStop).fill(" ").join("");
|
||
|
};
|
||
|
//# sourceMappingURL=spacer.js.map
|