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/errlop/edition-browsers/ |
Upload File : |
'use strict' /** Only accept codes that are numbers, otherwise discard them */ function parseCode(code) { const number = Number(code) if (isNaN(number)) return null return number } /** Fetch the code from the value */ function fetchCode(value) { return ( value && (parseCode(value.exitCode) || parseCode(value.errno) || parseCode(value.code)) ) } /** Prevent [a weird error on node version 4](https://github.com/bevry/errlop/issues/1) and below. */ function isValid(value) { /* eslint no-use-before-define:0 */ return value instanceof Error || Errlop.isErrlop(value) } export default class Errlop extends Error { /** * Create an instance of an error, using a message, as well as an optional parent. * If the parent is provided, then the `fullStack` property will include its stack too */ constructor(input, parent) { if (!input) throw new Error('Attempted to create an Errlop without a input') // Instantiate with the above super(input.message || input) // Apply this.klass = Errlop this.parent = parent || input.parent this.ancestors = [] let ancestor = this.parent while (ancestor) { this.ancestors.push(ancestor) ancestor = ancestor.parent } // this code must support node 0.8, as well as prevent a weird bug in node v4 // https://travis-ci.org/bevry/editions/jobs/408828147 let exitCode = fetchCode(input) if (exitCode == null) exitCode = fetchCode(this) for ( let index = 0; index < this.ancestors.length && exitCode == null; ++index ) { const error = this.ancestors[index] if (isValid(error)) exitCode = fetchCode(error) } // Apply if (exitCode != null) { this.exitCode = exitCode } this.orphanStack = (input.stack || this.stack).toString() this.stack = this.ancestors.reduce( (accumulator, error) => `${accumulator}\n↳ ${error.orphanStack || error.stack || error}`, this.orphanStack ) } /** * Syntatic sugar for Errlop class creation. * Enables `Errlop.create(...args)` to achieve `new Errlop(...args)` */ static create(input, parent) { return new this(input, parent) } /** Check whether or not the value is an Errlop instance */ static isErrlop(value) { return value && (value instanceof this || value.klass === this) } /** Ensure that the value is an Errlop instance */ static ensure(value) { return this.isErrlop(value) ? value : this.create(value) } }