some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / utils / isStandardSyntaxFunction.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/utils/isStandardSyntaxFunction.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/utils/isStandardSyntaxFunction.js
deleted file mode 100644 (file)
index f1e24f9..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-/* @flow */
-"use strict";
-
-/**
- * Check whether a function is standard
- */
-module.exports = function(node /*: Object*/) /*: boolean*/ {
-  // Function nodes without names are things in parentheses like Sass lists
-  if (!node.value) {
-    return false;
-  }
-
-  return true;
-};