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 /
yaml /
dist /
compose /
Delete
Unzip
Name
Size
Permission
Date
Action
compose-collection.d.ts
476
B
-rw-r--r--
2024-02-26 08:46
compose-collection.js
3.05
KB
-rw-r--r--
2024-02-26 08:46
compose-doc.d.ts
641
B
-rw-r--r--
2024-02-26 08:46
compose-doc.js
1.53
KB
-rw-r--r--
2024-02-26 08:46
compose-node.d.ts
1.16
KB
-rw-r--r--
2024-02-26 08:46
compose-node.js
3.48
KB
-rw-r--r--
2024-02-26 08:46
compose-scalar.d.ts
405
B
-rw-r--r--
2024-02-26 08:46
compose-scalar.js
3.21
KB
-rw-r--r--
2024-02-26 08:46
composer.d.ts
2.59
KB
-rw-r--r--
2024-02-26 08:46
composer.js
8.36
KB
-rw-r--r--
2024-02-26 08:46
resolve-block-map.d.ts
550
B
-rw-r--r--
2024-02-26 08:46
resolve-block-map.js
4.83
KB
-rw-r--r--
2024-02-26 08:46
resolve-block-scalar.d.ts
433
B
-rw-r--r--
2024-02-26 08:46
resolve-block-scalar.js
7.11
KB
-rw-r--r--
2024-02-26 08:46
resolve-block-seq.d.ts
511
B
-rw-r--r--
2024-02-26 08:46
resolve-block-seq.js
1.7
KB
-rw-r--r--
2024-02-26 08:46
resolve-end.d.ts
289
B
-rw-r--r--
2024-02-26 08:46
resolve-end.js
1.23
KB
-rw-r--r--
2024-02-26 08:46
resolve-flow-collection.d.ts
658
B
-rw-r--r--
2024-02-26 08:46
resolve-flow-collection.js
8.42
KB
-rw-r--r--
2024-02-26 08:46
resolve-flow-scalar.d.ts
444
B
-rw-r--r--
2024-02-26 08:46
resolve-flow-scalar.js
6.95
KB
-rw-r--r--
2024-02-26 08:46
resolve-props.d.ts
806
B
-rw-r--r--
2024-02-26 08:46
resolve-props.js
4.93
KB
-rw-r--r--
2024-02-26 08:46
util-contains-newline.d.ts
134
B
-rw-r--r--
2024-02-26 08:46
util-contains-newline.js
1.06
KB
-rw-r--r--
2024-02-26 08:46
util-empty-scalar-position.d.ts
164
B
-rw-r--r--
2024-02-26 08:46
util-empty-scalar-position.js
871
B
-rw-r--r--
2024-02-26 08:46
util-flow-indent-check.d.ts
211
B
-rw-r--r--
2024-02-26 08:46
util-flow-indent-check.js
547
B
-rw-r--r--
2024-02-26 08:46
util-map-includes.d.ts
269
B
-rw-r--r--
2024-02-26 08:46
util-map-includes.js
574
B
-rw-r--r--
2024-02-26 08:46
Save
Rename
import { Directives } from '../doc/directives.js'; import { Document } from '../doc/Document.js'; import { ErrorCode, YAMLParseError, YAMLWarning } from '../errors.js'; import type { ParsedNode, Range } from '../nodes/Node.js'; import type { DocumentOptions, ParseOptions, SchemaOptions } from '../options.js'; import type { Token } from '../parse/cst.js'; declare type ErrorSource = number | [number, number] | Range | { offset: number; source?: string; }; export declare type ComposeErrorHandler = (source: ErrorSource, code: ErrorCode, message: string, warning?: boolean) => void; /** * Compose a stream of CST nodes into a stream of YAML Documents. * * ```ts * import { Composer, Parser } from 'yaml' * * const src: string = ... * const tokens = new Parser().parse(src) * const docs = new Composer().compose(tokens) * ``` */ export declare class Composer<Contents extends ParsedNode = ParsedNode, Strict extends boolean = true> { private directives; private doc; private options; private atDirectives; private prelude; private errors; private warnings; constructor(options?: ParseOptions & DocumentOptions & SchemaOptions); private onError; private decorate; /** * Current stream status information. * * Mostly useful at the end of input for an empty stream. */ streamInfo(): { comment: string; directives: Directives; errors: YAMLParseError[]; warnings: YAMLWarning[]; }; /** * Compose tokens into documents. * * @param forceDoc - If the stream contains no document, still emit a final document including any comments and directives that would be applied to a subsequent document. * @param endOffset - Should be set if `forceDoc` is also set, to set the document range end and to indicate errors correctly. */ compose(tokens: Iterable<Token>, forceDoc?: boolean, endOffset?: number): Generator<Document.Parsed<Contents, Strict>, void, unknown>; /** Advance the composer by one CST token. */ next(token: Token): Generator<Document.Parsed<Contents, Strict>, void, unknown>; /** * Call at end of input to yield any remaining document. * * @param forceDoc - If the stream contains no document, still emit a final document including any comments and directives that would be applied to a subsequent document. * @param endOffset - Should be set if `forceDoc` is also set, to set the document range end and to indicate errors correctly. */ end(forceDoc?: boolean, endOffset?: number): Generator<Document.Parsed<Contents, Strict>, void, unknown>; } export {};