some deletions
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / fast-glob / package / out / utils / path.js
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/fast-glob/package/out/utils/path.js b/.config/coc/extensions/node_modules/coc-prettier/node_modules/fast-glob/package/out/utils/path.js
deleted file mode 100644 (file)
index 14b4cf9..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-"use strict";\r
-Object.defineProperty(exports, "__esModule", { value: true });\r
-var path = require("path");\r
-/**\r
- * Returns «true» if the last partial of the path starting with a period.\r
- */\r
-function isDotDirectory(filepath) {\r
-    return path.basename(filepath).startsWith('.');\r
-}\r
-exports.isDotDirectory = isDotDirectory;\r
-/**\r
- * Convert a windows-like path to a unix-style path.\r
- */\r
-function normalize(filepath) {\r
-    return filepath.replace(/\\/g, '/');\r
-}\r
-exports.normalize = normalize;\r
-/**\r
- * Returns normalized absolute path of provided filepath.\r
- */\r
-function makeAbsolute(cwd, filepath) {\r
-    return normalize(path.resolve(cwd, filepath));\r
-}\r
-exports.makeAbsolute = makeAbsolute;\r