mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-04 11:43:02 +00:00
These are all the files from the Tabler react repos, made to work with laravel and webpack.
This commit is contained in:
12
resources/js/ComponentDemo/react-element-to-jsx-string/formatter/spacer.js
vendored
Normal file
12
resources/js/ComponentDemo/react-element-to-jsx-string/formatter/spacer.js
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
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
|
Reference in New Issue
Block a user