| Server IP : 121.121.20.254 / Your IP : 216.73.217.101 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nvm4w/nodejs/node_modules/npm/node_modules/cacache/node_modules/mkdirp/dist/mjs/ |
Upload File : |
import { dirname } from 'path';
export const findMade = async (opts, parent, path) => {
// we never want the 'made' return value to be a root directory
if (path === parent) {
return;
}
return opts.statAsync(parent).then(st => (st.isDirectory() ? path : undefined), // will fail later
// will fail later
er => {
const fer = er;
return fer && fer.code === 'ENOENT'
? findMade(opts, dirname(parent), parent)
: undefined;
});
};
export const findMadeSync = (opts, parent, path) => {
if (path === parent) {
return undefined;
}
try {
return opts.statSync(parent).isDirectory() ? path : undefined;
}
catch (er) {
const fer = er;
return fer && fer.code === 'ENOENT'
? findMadeSync(opts, dirname(parent), parent)
: undefined;
}
};
//# sourceMappingURL=find-made.js.map