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.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
json5 /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
cli.js
3.51
KB
-rwxr-xr-x
2023-01-25 01:13
index.d.ts
1.79
KB
-rw-r--r--
2023-01-24 00:31
index.js
143
B
-rw-r--r--
2023-01-25 01:13
parse.d.ts
533
B
-rw-r--r--
2023-01-25 01:13
parse.js
21.88
KB
-rw-r--r--
2023-01-25 01:13
register.js
374
B
-rw-r--r--
2023-01-25 01:13
require.js
163
B
-rw-r--r--
2023-01-25 01:13
stringify.d.ts
4.06
KB
-rw-r--r--
2023-01-25 01:13
stringify.js
6.82
KB
-rw-r--r--
2023-01-25 01:13
unicode.d.ts
124
B
-rw-r--r--
2023-01-25 01:13
unicode.js
17.43
KB
-rw-r--r--
2023-01-25 01:13
util.d.ts
292
B
-rw-r--r--
2023-01-25 01:13
util.js
885
B
-rw-r--r--
2023-01-25 01:13
Save
Rename
// Type definitions for JSON5 // Project: http://json5.org/ // Definitions by: Jason Swearingen <https://jasonswearingen.github.io> // Kacper Wiszczuk <https://github.com/Esemesek> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped //commonjs loader /** * The following is the exact list of additions to JSON's syntax introduced by JSON5. All of these are optional, and all of these come from ES5. Objects Object keys can be unquoted if they're valid identifiers. Yes, even reserved keywords (like default) are valid unquoted keys in ES5 [§11.1.5, §7.6]. (More info) (TODO: Unicode characters and escape sequences aren’t yet supported in this implementation.) Objects can have trailing commas. Arrays Arrays can have trailing commas. Strings Strings can be single-quoted. Strings can be split across multiple lines; just prefix each newline with a backslash. [ES5 §7.8.4] Numbers Numbers can be hexadecimal (base 16). Numbers can begin or end with a (leading or trailing) decimal point. Numbers can include Infinity, -Infinity, NaN, and -NaN. Numbers can begin with an explicit plus sign. Comments Both inline (single-line) and block (multi-line) comments are allowed. */ type JSONReplacer = (key: string, value: any) => any | (number | string)[] | null; interface JSON5 { // Old JSON methods parse(text: string, reviver?: (key: any, value: any) => any): any; stringify(value: any, replacer?: (key: string, value: any) => any, space?: string | number): string; stringify(value: any, replacer?: (number | string)[] | null, space?: string | number): string; // New JSON5 stringify function stringify(value: any, options?: { space?: number | string, quote?: string, replacer?: JSONReplacer }): string; } declare var json5: JSON5; export = json5;