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 /
jest-worker /
build /
workers /
Delete
Unzip
Name
Size
Permission
Date
Action
ChildProcessWorker.d.ts
2.72
KB
-rw-r--r--
2023-12-13 10:07
ChildProcessWorker.js
15.75
KB
-rw-r--r--
2023-12-13 10:07
NodeThreadsWorker.d.ts
1.73
KB
-rw-r--r--
2023-12-13 10:07
NodeThreadsWorker.js
10.51
KB
-rw-r--r--
2023-12-13 10:07
WorkerAbstract.d.ts
1.26
KB
-rw-r--r--
2023-12-13 10:07
WorkerAbstract.js
3.45
KB
-rw-r--r--
2023-12-13 10:07
messageParent.d.ts
317
B
-rw-r--r--
2023-12-13 10:07
messageParent.js
921
B
-rw-r--r--
2023-12-13 10:07
processChild.d.ts
202
B
-rw-r--r--
2023-12-13 10:07
processChild.js
3.96
KB
-rw-r--r--
2023-12-13 10:07
threadChild.d.ts
202
B
-rw-r--r--
2023-12-13 10:07
threadChild.js
4.28
KB
-rw-r--r--
2023-12-13 10:07
Save
Rename
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = messageParent; function _worker_threads() { const data = require("worker_threads"); _worker_threads = function () { return data; }; return data; } var _types = require("../types"); /** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ function messageParent(message, parentProcess = process) { if (!_worker_threads().isMainThread && _worker_threads().parentPort != null) { _worker_threads().parentPort.postMessage([_types.PARENT_MESSAGE_CUSTOM, message]); } else if (typeof parentProcess.send === 'function') { parentProcess.send([_types.PARENT_MESSAGE_CUSTOM, message]); } else { throw new Error('"messageParent" can only be used inside a worker'); } }