DIR: /proc/1784574/root/usr/share/node_modules/ensure-posix-path/ |
Current File : //proc/1784574/root/usr/share/node_modules/ensure-posix-path/index.js |
"use strict"; var path = require("path"); module.exports = function ensurePosix(filepath) { if (path.sep !== '/') { return filepath.split(path.sep).join('/'); } return filepath; }; //# sourceMappingURL=index.js.map |