.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / urix / index.js
1 // Copyright 2014 Simon Lydell\r
2 // X11 (“MIT”) Licensed. (See LICENSE.)\r
3 \r
4 var path = require("path")\r
5 \r
6 "use strict"\r
7 \r
8 function urix(aPath) {\r
9   if (path.sep === "\\") {\r
10     return aPath\r
11       .replace(/\\/g, "/")\r
12       .replace(/^[a-z]:\/?/i, "/")\r
13   }\r
14   return aPath\r
15 }\r
16 \r
17 module.exports = urix\r