tra-analysis/website/node_modules/npm/lib/utils/link.js

9 lines
234 B
JavaScript
Raw Normal View History

2019-01-06 19:14:45 +00:00
module.exports = link
var gentleFS = require('gentle-fs')
var gentleFSOpts = require('../config/gentle-fs.js')
function link (from, to, gently, abs, cb) {
return gentleFS.link(from, to, gentleFSOpts(gently, undefined, abs), cb)
}