some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / utils / optionsMatches.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/utils/optionsMatches.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/utils/optionsMatches.js
deleted file mode 100644 (file)
index 47d269b..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-/* @flow */
-"use strict";
-
-const matchesStringOrRegExp = require("./matchesStringOrRegExp");
-
-/**
- * Check if an options object's propertyName contains a user-defined string or
- * regex that matches the passed in input.
- */
-module.exports = function optionsMatches(
-  options /*: Object*/,
-  propertyName /*: string*/,
-  input /*: string*/
-) /*: boolean*/ {
-  return !!(
-    options &&
-    options[propertyName] &&
-    typeof input === "string" &&
-    matchesStringOrRegExp(input, options[propertyName])
-  );
-};