react-code-dataset
/
tabler-react
/example
/src
/ComponentDemo
/react-element-to-jsx-string
/formatter
/spacer.js
| 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 | |