Current Path: > > usr > lib > node_modules > npm > > node_modules > > gentle-fs > > lib >
Operation : Linux host59.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64 Software : Apache Server IP : 198.54.126.42 | Your IP: 216.73.216.8 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
bin-link.js | File | 2601 bytes | March 10 2021 14:36:39. | |
chown.js | File | 660 bytes | March 10 2021 14:36:39. | |
link.js | File | 3614 bytes | March 10 2021 14:36:39. | |
mkdir.js | File | 514 bytes | March 10 2021 14:36:39. | |
rm.js | File | 7813 bytes | March 10 2021 14:36:39. |
'use strict' const mkdirp = require('mkdirp') const inferOwner = require('infer-owner') const chown = require('./chown.js') module.exports = (path, cb) => { // don't bother chowning if we can't anyway if (process.platform === 'win32' || chown.selfOwner.uid !== 0) { return mkdirp(path, cb) } inferOwner(path).then(owner => { mkdirp(path, (er, made) => { if (er || !made) { cb(er, made) } else { chown(made || path, owner.uid, owner.gid, cb) } }) }, cb) }
SILENT KILLER Tool