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 /
got /
dist /
as-promise /
Delete
Unzip
Name
Size
Permission
Date
Action
create-rejection.d.ts
203
B
-rw-r--r--
2023-01-15 03:21
create-rejection.js
1005
B
-rw-r--r--
2023-01-15 03:21
index.d.ts
187
B
-rw-r--r--
2023-01-15 03:21
index.js
8.08
KB
-rw-r--r--
2023-01-15 03:21
normalize-arguments.d.ts
196
B
-rw-r--r--
2023-01-15 03:21
normalize-arguments.js
3.18
KB
-rw-r--r--
2023-01-15 03:21
parse-body.d.ts
238
B
-rw-r--r--
2023-01-15 03:21
parse-body.js
816
B
-rw-r--r--
2023-01-15 03:21
types.d.ts
9.24
KB
-rw-r--r--
2023-01-15 03:21
types.js
1.72
KB
-rw-r--r--
2023-01-15 03:21
Save
Rename
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const types_1 = require("./types"); const parseBody = (response, responseType, parseJson, encoding) => { const { rawBody } = response; try { if (responseType === 'text') { return rawBody.toString(encoding); } if (responseType === 'json') { return rawBody.length === 0 ? '' : parseJson(rawBody.toString()); } if (responseType === 'buffer') { return rawBody; } throw new types_1.ParseError({ message: `Unknown body type '${responseType}'`, name: 'Error' }, response); } catch (error) { // @ts-ignore throw new types_1.ParseError(error, response); } }; exports.default = parseBody;