some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / utils / hasScssInterpolation.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/utils/hasScssInterpolation.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/utils/hasScssInterpolation.js
deleted file mode 100644 (file)
index 8522f89..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-/* @flow */
-"use strict";
-
-/**
- * Check whether a string has scss interpolation
- */
-module.exports = function(string /*: string*/) /*: boolean*/ {
-  if (/#{.+?}/.test(string)) {
-    return true;
-  }
-
-  return false;
-};