Linux bear.hostingplus.cl 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
LiteSpeed
Server IP : 192.140.57.17 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : explo
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
bitninja-dispatcher /
node_modules /
make-error /
Delete
Unzip
Name
Size
Permission
Date
Action
dist
[ DIR ]
drwxr-xr-x
2026-02-20 01:17
LICENSE
729
B
-rw-r--r--
2026-02-18 13:02
README.md
2.57
KB
-rw-r--r--
2026-02-18 13:02
index.d.ts
947
B
-rw-r--r--
2026-02-18 13:02
index.js
3.76
KB
-rw-r--r--
2026-02-18 13:02
package.json
2.3
KB
-rw-r--r--
2026-02-18 13:02
Save
Rename
/** * Create a new error constructor instance. */ declare function makeError( name: string ): makeError.Constructor<makeError.BaseError>; /** * Set the constructor prototype to `BaseError`. */ declare function makeError<T extends Error>(super_: { new (...args: any[]): T; }): makeError.Constructor<T & makeError.BaseError>; /** * Create a specialized error instance. */ declare function makeError<T extends Error, K>( name: string | Function, super_: K ): K & makeError.SpecializedConstructor<T>; declare namespace makeError { /** * Use with ES2015+ inheritance. */ export class BaseError extends Error { message: string; name: string; stack: string; constructor(message?: string); } export interface Constructor<T> { new (message?: string): T; super_: any; prototype: T; } export interface SpecializedConstructor<T> { super_: any; prototype: T; } } export = makeError;