Server IP : 185.86.78.101 / Your IP : 216.73.216.124 Web Server : Apache System : Linux 675867-vds-valikoshka1996.gmhost.pp.ua 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /www/wwwroot/mifepriston.org/node_modules/jscodeshift/src/ |
Upload File : |
'use strict'; const fs = require('fs'); const mm = require('micromatch'); const matchers = []; /** * Add glob patterns to ignore matched files and folders. * Creates glob patterns to approximate gitignore patterns. * @param {String} val - the glob or gitignore-style pattern to ignore * @see {@linkplain https://git-scm.com/docs/gitignore#_pattern_format} */ function addIgnorePattern(val) { if (val && typeof val === 'string') { let pattern = val; if (pattern.indexOf('/') === -1) { matchers.push('**/' + pattern); } else if (pattern[pattern.length-1] === '/') { matchers.push('**/' + pattern + '**'); matchers.push(pattern + '**'); } matchers.push(pattern); } } /** * Adds ignore patterns directly from function input * @param {String|Array<String>} input - the ignore patterns */ function addIgnoreFromInput(input) { let patterns = []; if (input) { patterns = patterns.concat(input); } patterns.forEach(addIgnorePattern); } /** * Adds ignore patterns by reading files * @param {String|Array<String>} input - the paths to the ignore config files */ function addIgnoreFromFile(input) { let lines = []; let files = []; if (input) { files = files.concat(input); } files.forEach(function(config) { const stats = fs.statSync(config); if (stats.isFile()) { const content = fs.readFileSync(config, 'utf8'); lines = lines.concat(content.split('\n')); } }); lines.forEach(addIgnorePattern); } function shouldIgnore(path) { const matched = matchers.length ? mm.any(path, matchers, { dot:true }) : false; return matched; } exports.add = addIgnoreFromInput; exports.addFromFile = addIgnoreFromFile; exports.shouldIgnore = shouldIgnore;