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

relpath.js « lib « arborist « workspaces - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1960cfec02c75c22f1f735d2bda035c39ff349b (plain)
1
2
3
const { relative } = require('path')
const relpath = (from, to) => relative(from, to).replace(/\\/g, '/')
module.exports = relpath