File size: 247 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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
|