Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/stylelint/lib/utils/blockString.js')
-rw-r--r--assets/node_modules/stylelint/lib/utils/blockString.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/assets/node_modules/stylelint/lib/utils/blockString.js b/assets/node_modules/stylelint/lib/utils/blockString.js
new file mode 100644
index 0000000..fd0b385
--- /dev/null
+++ b/assets/node_modules/stylelint/lib/utils/blockString.js
@@ -0,0 +1,25 @@
+'use strict';
+
+const beforeBlockString = require('./beforeBlockString');
+const hasBlock = require('./hasBlock');
+const rawNodeString = require('./rawNodeString');
+
+/** @typedef {import('postcss').Rule} Rule */
+/** @typedef {import('postcss').AtRule} AtRule */
+
+/**
+ * Return a CSS statement's block -- the string that starts and `{` and ends with `}`.
+ *
+ * If the statement has no block (e.g. `@import url(foo.css);`),
+ * return false.
+ *
+ * @param {Rule | AtRule} statement - postcss rule or at-rule node
+ * @return {string | boolean}
+ */
+module.exports = function(statement) {
+ if (!hasBlock(statement)) {
+ return false;
+ }
+
+ return rawNodeString(statement).slice(beforeBlockString(statement).length);
+};