File size: 201 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 |
"use strict";
var path = require("path");
module.exports = function ensurePosix(filepath) {
if (path.sep !== '/') {
return filepath.split(path.sep).join('/');
}
return filepath;
};
|