Edit file File name : unix-format-path.js Content :'use strict' module.exports = function (path) { return path.replace(/\\/g, '/') } Save