blob: 3fb79031493ba06f3ed37eecb87067fefe913fa1 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001// Copyright 2014 Simon Lydell
2// X11 (“MIT”) Licensed. (See LICENSE.)
3
4var path = require("path")
5
6"use strict"
7
8function urix(aPath) {
9 if (path.sep === "\\") {
10 return aPath
11 .replace(/\\/g, "/")
12 .replace(/^[a-z]:\/?/i, "/")
13 }
14 return aPath
15}
16
17module.exports = urix