Welcome to mirror list, hosted at ThFree Co, Russian Federation.

unix-format-path.js « utils « lib - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a82cd7135cc2c9e06bec0fa32297f67acff2bf6c (plain)
1
2
3
4
5
'use strict'

module.exports = function (path) {
  return path.replace(/\\/g, '/')
}