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

man-target.js « lib « bin-links « node_modules « arborist « @npmcli « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 832d2ea35e43cfb009eb1288db23b1cd274e4281 (plain)
1
2
3
4
5
6
const isWindows = require('./is-windows.js')
const getPrefix = require('./get-prefix.js')
const {dirname} = require('path')

module.exports = ({top, path}) => !top || isWindows ? null
  : dirname(getPrefix(path)) + '/share/man'