Server IP : 85.214.239.14 / Your IP : 3.147.28.73 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/3/task/3/root/proc/self/root/usr/lib/node_modules/npm/node_modules/rimraf/dist/esm/ |
Upload File : |
import { glob, globSync } from 'glob'; import { optArg, optArgSync, } from './opt-arg.js'; import pathArg from './path-arg.js'; import { rimrafManual, rimrafManualSync } from './rimraf-manual.js'; import { rimrafMoveRemove, rimrafMoveRemoveSync } from './rimraf-move-remove.js'; import { rimrafNative, rimrafNativeSync } from './rimraf-native.js'; import { rimrafPosix, rimrafPosixSync } from './rimraf-posix.js'; import { rimrafWindows, rimrafWindowsSync } from './rimraf-windows.js'; import { useNative, useNativeSync } from './use-native.js'; export { assertRimrafOptions, isRimrafOptions, } from './opt-arg.js'; const wrap = (fn) => async (path, opt) => { const options = optArg(opt); if (options.glob) { path = await glob(path, options.glob); } if (Array.isArray(path)) { return !!(await Promise.all(path.map(p => fn(pathArg(p, options), options)))).reduce((a, b) => a && b, true); } else { return !!(await fn(pathArg(path, options), options)); } }; const wrapSync = (fn) => (path, opt) => { const options = optArgSync(opt); if (options.glob) { path = globSync(path, options.glob); } if (Array.isArray(path)) { return !!path .map(p => fn(pathArg(p, options), options)) .reduce((a, b) => a && b, true); } else { return !!fn(pathArg(path, options), options); } }; export const nativeSync = wrapSync(rimrafNativeSync); export const native = Object.assign(wrap(rimrafNative), { sync: nativeSync }); export const manualSync = wrapSync(rimrafManualSync); export const manual = Object.assign(wrap(rimrafManual), { sync: manualSync }); export const windowsSync = wrapSync(rimrafWindowsSync); export const windows = Object.assign(wrap(rimrafWindows), { sync: windowsSync }); export const posixSync = wrapSync(rimrafPosixSync); export const posix = Object.assign(wrap(rimrafPosix), { sync: posixSync }); export const moveRemoveSync = wrapSync(rimrafMoveRemoveSync); export const moveRemove = Object.assign(wrap(rimrafMoveRemove), { sync: moveRemoveSync, }); export const rimrafSync = wrapSync((path, opt) => useNativeSync(opt) ? rimrafNativeSync(path, opt) : rimrafManualSync(path, opt)); export const sync = rimrafSync; const rimraf_ = wrap((path, opt) => useNative(opt) ? rimrafNative(path, opt) : rimrafManual(path, opt)); export const rimraf = Object.assign(rimraf_, { rimraf: rimraf_, sync: rimrafSync, rimrafSync: rimrafSync, manual, manualSync, native, nativeSync, posix, posixSync, windows, windowsSync, moveRemove, moveRemoveSync, }); rimraf.rimraf = rimraf; //# sourceMappingURL=index.js.map