🎉 initiate project *astro_rewrite*

This commit is contained in:
sindrekjelsrud 2023-07-19 21:31:30 +02:00
parent ffd4d5e86c
commit 2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions

20
node_modules/sass-formatter/dist/sassTextLine.js generated vendored Normal file
View file

@ -0,0 +1,20 @@
"use strict";
exports.__esModule = true;
exports.SassTextLine = void 0;
var regex_1 = require("./regex/regex");
var SassTextLine = /** @class */ (function () {
function SassTextLine(text) {
this.text = text;
this.isEmptyOrWhitespace = regex_1.isEmptyOrWhitespace(text);
}
/**Sets the text of the line. */
SassTextLine.prototype.set = function (text) {
this.text = text;
};
/**Gets the text of the line. */
SassTextLine.prototype.get = function () {
return this.text;
};
return SassTextLine;
}());
exports.SassTextLine = SassTextLine;