some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / utils / hasBlock.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/utils/hasBlock.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/utils/hasBlock.js
deleted file mode 100644 (file)
index 754465a..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-/* @flow */
-"use strict";
-
-/**
- * Check if a statement has an block (empty or otherwise).
- *
- * @param {Rule|AtRule} statement - postcss rule or at-rule node
- * @return {boolean} True if `statement` has a block (empty or otherwise)
- */
-module.exports = function(statement /*: postcss$node*/) /*: boolean*/ {
-  return statement.nodes !== undefined;
-};