Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
node_modules /
yaml /
Delete
Unzip
Name
Size
Permission
Date
Action
browser
[ DIR ]
drwxr-xr-x
2022-04-21 14:34
dist
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
types
[ DIR ]
drwxr-xr-x
2022-04-21 14:30
LICENSE
743
B
-rw-r--r--
2022-04-21 14:27
README.md
4.43
KB
-rw-r--r--
2022-04-21 14:27
index.d.ts
10.49
KB
-rw-r--r--
2022-04-21 14:27
index.js
40
B
-rw-r--r--
2022-04-21 14:27
map.js
114
B
-rw-r--r--
2022-04-21 14:27
package.json
3.01
KB
-rw-r--r--
2022-04-21 14:27
pair.js
111
B
-rw-r--r--
2022-04-21 14:27
parse-cst.d.ts
4.41
KB
-rw-r--r--
2022-04-21 14:27
parse-cst.js
51
B
-rw-r--r--
2022-04-21 14:27
scalar.js
113
B
-rw-r--r--
2022-04-21 14:27
schema.js
311
B
-rw-r--r--
2022-04-21 14:27
seq.js
114
B
-rw-r--r--
2022-04-21 14:27
types.d.ts
11.36
KB
-rw-r--r--
2022-04-21 14:27
types.js
510
B
-rw-r--r--
2022-04-21 14:27
types.mjs
578
B
-rw-r--r--
2022-04-21 14:27
util.d.ts
2.03
KB
-rw-r--r--
2022-04-21 14:27
util.js
511
B
-rw-r--r--
2022-04-21 14:27
util.mjs
571
B
-rw-r--r--
2022-04-21 14:27
Save
Rename
import { Document } from './index' import { CST } from './parse-cst' import { AST, Pair, Scalar, Schema } from './types' export function findPair(items: any[], key: Scalar | any): Pair | undefined export function parseMap(doc: Document, cst: CST.Map): AST.BlockMap export function parseMap(doc: Document, cst: CST.FlowMap): AST.FlowMap export function parseSeq(doc: Document, cst: CST.Seq): AST.BlockSeq export function parseSeq(doc: Document, cst: CST.FlowSeq): AST.FlowSeq export function stringifyNumber(item: Scalar): string export function stringifyString( item: Scalar, ctx: Schema.StringifyContext, onComment?: () => void, onChompKeep?: () => void ): string export function toJSON( value: any, arg?: any, ctx?: Schema.CreateNodeContext ): any export enum Type { ALIAS = 'ALIAS', BLANK_LINE = 'BLANK_LINE', BLOCK_FOLDED = 'BLOCK_FOLDED', BLOCK_LITERAL = 'BLOCK_LITERAL', COMMENT = 'COMMENT', DIRECTIVE = 'DIRECTIVE', DOCUMENT = 'DOCUMENT', FLOW_MAP = 'FLOW_MAP', FLOW_SEQ = 'FLOW_SEQ', MAP = 'MAP', MAP_KEY = 'MAP_KEY', MAP_VALUE = 'MAP_VALUE', PLAIN = 'PLAIN', QUOTE_DOUBLE = 'QUOTE_DOUBLE', QUOTE_SINGLE = 'QUOTE_SINGLE', SEQ = 'SEQ', SEQ_ITEM = 'SEQ_ITEM' } interface LinePos { line: number col: number } export class YAMLError extends Error { name: | 'YAMLReferenceError' | 'YAMLSemanticError' | 'YAMLSyntaxError' | 'YAMLWarning' message: string source?: CST.Node nodeType?: Type range?: CST.Range linePos?: { start: LinePos; end: LinePos } /** * Drops `source` and adds `nodeType`, `range` and `linePos`, as well as * adding details to `message`. Run automatically for document errors if * the `prettyErrors` option is set. */ makePretty(): void } export class YAMLReferenceError extends YAMLError { name: 'YAMLReferenceError' } export class YAMLSemanticError extends YAMLError { name: 'YAMLSemanticError' } export class YAMLSyntaxError extends YAMLError { name: 'YAMLSyntaxError' } export class YAMLWarning extends YAMLError { name: 'YAMLWarning' }