REDROOM
PHP 8.2.30
Path:
Logout
Edit File
Size: 1.33 KB
Close
/proc/thread-self/root/home/byroehnu/.trash/node_modules11/@jridgewell/remapping/src/source-map.ts
Text
Base64
import { toDecodedMap, toEncodedMap } from '@jridgewell/gen-mapping'; import type { GenMapping } from '@jridgewell/gen-mapping'; import type { DecodedSourceMap, EncodedSourceMap, Options } from './types'; /** * A SourceMap v3 compatible sourcemap, which only includes fields that were * provided to it. */ export default class SourceMap { declare file?: string | null; declare mappings: EncodedSourceMap['mappings'] | DecodedSourceMap['mappings']; declare sourceRoot?: string; declare names: string[]; declare sources: (string | null)[]; declare sourcesContent?: (string | null)[]; declare version: 3; declare ignoreList: number[] | undefined; constructor(map: GenMapping, options: Options) { const out = options.decodedMappings ? toDecodedMap(map) : toEncodedMap(map); this.version = out.version; // SourceMap spec says this should be first. this.file = out.file; this.mappings = out.mappings as SourceMap['mappings']; this.names = out.names as SourceMap['names']; this.ignoreList = out.ignoreList as SourceMap['ignoreList']; this.sourceRoot = out.sourceRoot; this.sources = out.sources as SourceMap['sources']; if (!options.excludeContent) { this.sourcesContent = out.sourcesContent as SourceMap['sourcesContent']; } } toString(): string { return JSON.stringify(this); } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 5
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
build-source-map-tree.ts
3.31 KB
lrw-r--r--
2026-02-28 00:28:42
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
remapping.ts
1.41 KB
lrw-r--r--
2026-02-28 00:28:44
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
source-map-tree.ts
4.71 KB
lrw-r--r--
2026-02-28 00:28:44
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
source-map.ts
1.33 KB
lrw-r--r--
2026-02-28 00:28:46
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
types.ts
588 B
lrw-r--r--
2026-02-28 00:28:48
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).