some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / stylelint / lib / utils / getOsEol.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/utils/getOsEol.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/stylelint/lib/utils/getOsEol.js
deleted file mode 100644 (file)
index ad08bdd..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-/* @flow */
-"use strict";
-
-const os = require("os");
-
-// This function simply provides roundabout way of getting os.EOL
-// so we can mock this for Jest tests
-function getOsEl() /*: string*/ {
-  return os.EOL;
-}
-
-module.exports = getOsEl;