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