Server IP : 162.213.251.212 / Your IP : 52.15.201.192 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/home/allssztx/./www/easybuyer/node_modules/fast-glob/out/managers/ |
Upload File : |
"use strict"; var __assign = (this && this.__assign) || function () { __assign = Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; return __assign.apply(this, arguments); }; Object.defineProperty(exports, "__esModule", { value: true }); function prepare(options) { var opts = __assign({ cwd: process.cwd(), deep: true, ignore: [], dot: false, stats: false, onlyFiles: true, onlyDirectories: false, followSymlinkedDirectories: true, unique: true, markDirectories: false, absolute: false, nobrace: false, brace: true, noglobstar: false, globstar: true, noext: false, extension: true, nocase: false, case: true, matchBase: false, transform: null }, options); if (opts.onlyDirectories) { opts.onlyFiles = false; } opts.brace = !opts.nobrace; opts.globstar = !opts.noglobstar; opts.extension = !opts.noext; opts.case = !opts.nocase; if (options) { opts.brace = ('brace' in options ? options.brace : opts.brace); opts.globstar = ('globstar' in options ? options.globstar : opts.globstar); opts.extension = ('extension' in options ? options.extension : opts.extension); opts.case = ('case' in options ? options.case : opts.case); } return opts; } exports.prepare = prepare;