unix-format-path.js 85 B

12345
  1. 'use strict'
  2. module.exports = function (path) {
  3. return path.replace(/\\/g, '/')
  4. }