Files
Kmake/deps/npm/node_modules/bin-links/lib/man-target.js
2026-05-26 23:36:42 -07:00

7 lines
232 B
JavaScript

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'