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 /
yaml /
dist /
stringify /
Delete
Unzip
Name
Size
Permission
Date
Action
foldFlowLines.d.ts
1.25
KB
-rw-r--r--
2024-02-26 08:46
foldFlowLines.js
4.46
KB
-rw-r--r--
2024-02-26 08:46
stringify.d.ts
882
B
-rw-r--r--
2024-02-26 08:46
stringify.js
4.22
KB
-rw-r--r--
2024-02-26 08:46
stringifyCollection.d.ts
524
B
-rw-r--r--
2024-02-26 08:46
stringifyCollection.js
5.47
KB
-rw-r--r--
2024-02-26 08:46
stringifyComment.d.ts
419
B
-rw-r--r--
2024-02-26 08:46
stringifyComment.js
801
B
-rw-r--r--
2024-02-26 08:46
stringifyDocument.d.ts
269
B
-rw-r--r--
2024-02-26 08:46
stringifyDocument.js
3.03
KB
-rw-r--r--
2024-02-26 08:46
stringifyNumber.d.ts
150
B
-rw-r--r--
2024-02-26 08:46
stringifyNumber.js
748
B
-rw-r--r--
2024-02-26 08:46
stringifyPair.d.ts
249
B
-rw-r--r--
2024-02-26 08:46
stringifyPair.js
5.27
KB
-rw-r--r--
2024-02-26 08:46
stringifyString.d.ts
363
B
-rw-r--r--
2024-02-26 08:46
stringifyString.js
12.74
KB
-rw-r--r--
2024-02-26 08:46
Save
Rename
export declare const FOLD_FLOW = "flow"; export declare const FOLD_BLOCK = "block"; export declare const FOLD_QUOTED = "quoted"; /** * `'block'` prevents more-indented lines from being folded; * `'quoted'` allows for `\` escapes, including escaped newlines */ export declare type FoldMode = 'flow' | 'block' | 'quoted'; export interface FoldOptions { /** * Accounts for leading contents on the first line, defaulting to * `indent.length` */ indentAtStart?: number; /** Default: `80` */ lineWidth?: number; /** * Allow highly indented lines to stretch the line width or indent content * from the start. * * Default: `20` */ minContentWidth?: number; /** Called once if the text is folded */ onFold?: () => void; /** Called once if any line of text exceeds lineWidth characters */ onOverflow?: () => void; } /** * Tries to keep input at up to `lineWidth` characters, splitting only on spaces * not followed by newlines or spaces unless `mode` is `'quoted'`. Lines are * terminated with `\n` and started with `indent`. */ export declare function foldFlowLines(text: string, indent: string, mode?: FoldMode, { indentAtStart, lineWidth, minContentWidth, onFold, onOverflow }?: FoldOptions): string;