summaryrefslogtreecommitdiff
path: root/node_modules/postcss-selector-parser/dist/util/stripComments.js
diff options
context:
space:
mode:
authorPhilipp Tanlak <philipp.tanlak@gmail.com>2025-11-24 20:54:57 +0100
committerPhilipp Tanlak <philipp.tanlak@gmail.com>2025-11-24 20:57:48 +0100
commitb1e2c8fd5cb5dfa46bc440a12eafaf56cd844b1c (patch)
tree49d360fd6cbc6a2754efe93524ac47ff0fbe0f7d /node_modules/postcss-selector-parser/dist/util/stripComments.js
Docs
Diffstat (limited to 'node_modules/postcss-selector-parser/dist/util/stripComments.js')
-rw-r--r--node_modules/postcss-selector-parser/dist/util/stripComments.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/node_modules/postcss-selector-parser/dist/util/stripComments.js b/node_modules/postcss-selector-parser/dist/util/stripComments.js
new file mode 100644
index 0000000..0baa0e0
--- /dev/null
+++ b/node_modules/postcss-selector-parser/dist/util/stripComments.js
@@ -0,0 +1,21 @@
+"use strict";
+
+exports.__esModule = true;
+exports["default"] = stripComments;
+function stripComments(str) {
+ var s = "";
+ var commentStart = str.indexOf("/*");
+ var lastEnd = 0;
+ while (commentStart >= 0) {
+ s = s + str.slice(lastEnd, commentStart);
+ var commentEnd = str.indexOf("*/", commentStart + 2);
+ if (commentEnd < 0) {
+ return s;
+ }
+ lastEnd = commentEnd + 2;
+ commentStart = str.indexOf("/*", lastEnd);
+ }
+ s = s + str.slice(lastEnd);
+ return s;
+}
+module.exports = exports.default; \ No newline at end of file