UNPKG

fs-generate

Version:

Utilities to set up file system structures (directories, files, and symlinks)

10 lines (9 loc) 297 B
import lstat from './lstat.js'; import realpath from './realpath.js'; function lstatReal(path, options, callback) { realpath(path, function realpathCallback(err, realpath) { if (err) return callback(err); lstat(realpath, options, callback); }); } export default lstatReal;