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 /
regenerator-transform /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
emit.js
36.11
KB
-rw-r--r--
2023-10-29 12:30
hoist.js
4.68
KB
-rw-r--r--
2023-10-29 12:30
index.js
826
B
-rw-r--r--
2023-10-29 12:30
leap.js
3.72
KB
-rw-r--r--
2023-10-29 12:30
meta.js
2.82
KB
-rw-r--r--
2023-10-29 12:30
replaceShorthandObjectMethod.js
2.49
KB
-rw-r--r--
2023-10-29 12:30
util.js
960
B
-rw-r--r--
2023-10-29 12:30
visit.js
10.59
KB
-rw-r--r--
2023-10-29 12:30
Save
Rename
/** * Copyright (c) 2014-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { getVisitor } from "./visit"; export default function (context) { const plugin = { visitor: getVisitor(context), }; // Some presets manually call child presets, but fail to pass along the // context object. Out of an abundance of caution, we verify that it // exists first to avoid causing unnecessary breaking changes. const version = context && context.version; // The "name" property is not allowed in older versions of Babel (6.x) // and will cause the plugin validator to throw an exception. if (version && parseInt(version, 10) >= 7) { plugin.name = "regenerator-transform"; } return plugin; }