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/cosmiconfig/lib/ |
Upload File : |
'use strict'; var yaml = require('js-yaml'); var requireFromString = require('require-from-string'); var readFile = require('./readFile'); var parseJson = require('./parseJson'); module.exports = function (filepath, options) { return loadExtensionlessRc().then(function (result) { if (result) return result; if (options.rcExtensions) return loadRcWithExtensions(); return null; }); function loadExtensionlessRc() { return readRcFile().then(function (content) { if (!content) return null; var pasedConfig = (options.rcStrictJson) ? parseJson(content, filepath) : yaml.safeLoad(content, { filename: filepath, }); return { config: pasedConfig, filepath: filepath, }; }); } function loadRcWithExtensions() { return readRcFile('json').then(function (content) { if (content) { var successFilepath = filepath + '.json'; return { config: parseJson(content, successFilepath), filepath: successFilepath, }; } // If not content was found in the file with extension, // try the next possible extension return readRcFile('yaml'); }).then(function (content) { if (content) { // If the previous check returned an object with a config // property, then it succeeded and this step can be skipped if (content.config) return content; // If it just returned a string, then *this* check succeeded var successFilepath = filepath + '.yaml'; return { config: yaml.safeLoad(content, { filename: successFilepath }), filepath: successFilepath, }; } return readRcFile('yml'); }).then(function (content) { if (content) { if (content.config) return content; var successFilepath = filepath + '.yml'; return { config: yaml.safeLoad(content, { filename: successFilepath }), filepath: successFilepath, }; } return readRcFile('js'); }).then(function (content) { if (content) { if (content.config) return content; var successFilepath = filepath + '.js'; return { config: requireFromString(content, successFilepath), filepath: successFilepath, }; } return null; }); } function readRcFile(extension) { var filepathWithExtension = (extension) ? filepath + '.' + extension : filepath; return readFile(filepathWithExtension); } };