aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/rimraf/bin.js
diff options
context:
space:
mode:
authorNevena Bojovic <nenabojov@gmail.com>2022-03-01 22:05:25 +0100
committerNevena Bojovic <nenabojov@gmail.com>2022-03-01 22:05:25 +0100
commit6555fb80fdd8f6a5d201efadec3189d1244830a0 (patch)
treec1aa1c5aedc634ad1ea7fad4847884d559b51290 /sandbox/testAppNevena/Front/node_modules/rimraf/bin.js
parent7d3640f824f46490b47bd95f1c5a16644f712068 (diff)
Izbrisala bin, obj i node-modules.
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/rimraf/bin.js')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/rimraf/bin.js68
1 files changed, 0 insertions, 68 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/rimraf/bin.js b/sandbox/testAppNevena/Front/node_modules/rimraf/bin.js
deleted file mode 100644
index 023814cc..00000000
--- a/sandbox/testAppNevena/Front/node_modules/rimraf/bin.js
+++ /dev/null
@@ -1,68 +0,0 @@
-#!/usr/bin/env node
-
-const rimraf = require('./')
-
-const path = require('path')
-
-const isRoot = arg => /^(\/|[a-zA-Z]:\\)$/.test(path.resolve(arg))
-const filterOutRoot = arg => {
- const ok = preserveRoot === false || !isRoot(arg)
- if (!ok) {
- console.error(`refusing to remove ${arg}`)
- console.error('Set --no-preserve-root to allow this')
- }
- return ok
-}
-
-let help = false
-let dashdash = false
-let noglob = false
-let preserveRoot = true
-const args = process.argv.slice(2).filter(arg => {
- if (dashdash)
- return !!arg
- else if (arg === '--')
- dashdash = true
- else if (arg === '--no-glob' || arg === '-G')
- noglob = true
- else if (arg === '--glob' || arg === '-g')
- noglob = false
- else if (arg.match(/^(-+|\/)(h(elp)?|\?)$/))
- help = true
- else if (arg === '--preserve-root')
- preserveRoot = true
- else if (arg === '--no-preserve-root')
- preserveRoot = false
- else
- return !!arg
-}).filter(arg => !preserveRoot || filterOutRoot(arg))
-
-const go = n => {
- if (n >= args.length)
- return
- const options = noglob ? { glob: false } : {}
- rimraf(args[n], options, er => {
- if (er)
- throw er
- go(n+1)
- })
-}
-
-if (help || args.length === 0) {
- // If they didn't ask for help, then this is not a "success"
- const log = help ? console.log : console.error
- log('Usage: rimraf <path> [<path> ...]')
- log('')
- log(' Deletes all files and folders at "path" recursively.')
- log('')
- log('Options:')
- log('')
- log(' -h, --help Display this usage info')
- log(' -G, --no-glob Do not expand glob patterns in arguments')
- log(' -g, --glob Expand glob patterns in arguments (default)')
- log(' --preserve-root Do not remove \'/\' (default)')
- log(' --no-preserve-root Do not treat \'/\' specially')
- log(' -- Stop parsing flags')
- process.exit(help ? 0 : 1)
-} else
- go(0)