Urara-Blog/node_modules/.pnpm-store/v3/files/a6/702949cdc3b80afa6af280508c9514cd4f98907f2b109ff1ab63e030fdb9e9c1be6117d52b4f603bd402ec9fc1ef2a3e5b234280679d0cc4b8f043e0de96af
2022-08-14 01:14:53 +08:00

31 lines
694 B
Text

'use strict'
const fs = require('graceful-fs')
function symlinkType (srcpath, type, callback) {
callback = (typeof type === 'function') ? type : callback
type = (typeof type === 'function') ? false : type
if (type) return callback(null, type)
fs.lstat(srcpath, (err, stats) => {
if (err) return callback(null, 'file')
type = (stats && stats.isDirectory()) ? 'dir' : 'file'
callback(null, type)
})
}
function symlinkTypeSync (srcpath, type) {
let stats
if (type) return type
try {
stats = fs.lstatSync(srcpath)
} catch {
return 'file'
}
return (stats && stats.isDirectory()) ? 'dir' : 'file'
}
module.exports = {
symlinkType,
symlinkTypeSync
}