mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-04 11:43:02 +00:00
13 lines
247 B
JavaScript
Vendored
13 lines
247 B
JavaScript
Vendored
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
|