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 /
js-yaml /
lib /
type /
Delete
Unzip
Name
Size
Permission
Date
Action
binary.js
2.84
KB
-rw-r--r--
2022-10-26 12:30
bool.js
971
B
-rw-r--r--
2022-10-26 12:30
float.js
2.41
KB
-rw-r--r--
2022-10-26 12:30
int.js
3.6
KB
-rw-r--r--
2022-10-26 12:30
map.js
190
B
-rw-r--r--
2022-10-26 12:30
merge.js
230
B
-rw-r--r--
2022-10-26 12:30
null.js
808
B
-rw-r--r--
2022-10-26 12:30
omap.js
1023
B
-rw-r--r--
2022-10-26 12:30
pairs.js
1.06
KB
-rw-r--r--
2022-10-26 12:30
seq.js
191
B
-rw-r--r--
2022-10-26 12:30
set.js
547
B
-rw-r--r--
2022-10-26 12:30
str.js
189
B
-rw-r--r--
2022-10-26 12:30
timestamp.js
2.51
KB
-rw-r--r--
2022-10-26 12:30
Save
Rename
'use strict'; var Type = require('../type'); var _toString = Object.prototype.toString; function resolveYamlPairs(data) { if (data === null) return true; var index, length, pair, keys, result, object = data; result = new Array(object.length); for (index = 0, length = object.length; index < length; index += 1) { pair = object[index]; if (_toString.call(pair) !== '[object Object]') return false; keys = Object.keys(pair); if (keys.length !== 1) return false; result[index] = [ keys[0], pair[keys[0]] ]; } return true; } function constructYamlPairs(data) { if (data === null) return []; var index, length, pair, keys, result, object = data; result = new Array(object.length); for (index = 0, length = object.length; index < length; index += 1) { pair = object[index]; keys = Object.keys(pair); result[index] = [ keys[0], pair[keys[0]] ]; } return result; } module.exports = new Type('tag:yaml.org,2002:pairs', { kind: 'sequence', resolve: resolveYamlPairs, construct: constructYamlPairs });