/var/www/cobraambalaj/node_modules/urix
NameSizeModeActions
test/-0755rm
.jshintrc7260644editdlrm
index.js3080644editdlrm
LICENSE10790644editdlrm
package.json13470644editdlrm
readme.md8120644editdlrm
Edit: /var/www/cobraambalaj/node_modules/urix/index.js (308B)
// Copyright 2014 Simon Lydell // X11 (“MIT”) Licensed. (See LICENSE.) var path = require("path") "use strict" function urix(aPath) { if (path.sep === "\\") { return aPath .replace(/\\/g, "/") .replace(/^[a-z]:\/?/i, "/") } return aPath } module.exports = urix