How to use the lchmodSync function from graceful-fs
Find comprehensive JavaScript graceful-fs.lchmodSync code examples handpicked from public code repositorys.
GitHub: canarddu38/DUCKSPLOIT
423 424 425 426 427 428 429 430 431 432 433
exports.chmod = Promise.promisify(fs.chmod); exports.chmodSync = fs.chmodSync; exports.fchmod = Promise.promisify(fs.fchmod); exports.fchmodSync = fs.fchmodSync; exports.lchmod = Promise.promisify(fs.lchmod); exports.lchmodSync = fs.lchmodSync; // chown exports.chown = Promise.promisify(fs.chown); exports.chownSync = fs.chownSync;
9
48
0
+ 7 other calls in file
graceful-fs.promises is the most popular function in graceful-fs (1135 examples)