some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / utils / hasEmptyLine.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/utils/hasEmptyLine.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/utils/hasEmptyLine.js
deleted file mode 100644 (file)
index c3747e7..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-/* @flow */
-"use strict";
-
-/**
- * Check if a string contains at least one empty line
- */
-module.exports = function(string /*:: ?: string*/) /*: boolean*/ {
-  if (string === "" || string === undefined) return false;
-
-  return /\n[\r\t ]*\n/.test(string);
-};