Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
app /
framework7 /
utils /
Delete
Unzip
Name
Size
Permission
Date
Action
bezier.js
3.38
KB
-rw-r--r--
2018-01-23 10:36
class.js
5.08
KB
-rw-r--r--
2018-01-23 10:36
component.js
10.39
KB
-rw-r--r--
2018-01-23 10:36
constructor-methods.js
1010
B
-rw-r--r--
2018-01-23 10:36
device.js
3.01
KB
-rw-r--r--
2018-01-23 10:36
history.js
3.45
KB
-rw-r--r--
2018-01-23 10:36
modal-methods.js
880
B
-rw-r--r--
2018-01-23 10:36
request.js
9.07
KB
-rw-r--r--
2018-01-23 10:36
support.js
1.96
KB
-rw-r--r--
2018-01-23 10:36
utils.js
16.38
KB
-rw-r--r--
2018-01-23 10:36
Save
Rename
import $ from 'dom7'; export default function (parameters = {}) { const { defaultSelector, constructor, domProp, app, addMethods, } = parameters; const methods = { create(...args) { if (app) return new constructor(app, ...args); return new constructor(...args); }, get(el = defaultSelector) { if (el instanceof constructor) return el; const $el = $(el); if ($el.length === 0) return undefined; return $el[0][domProp]; }, destroy(el) { const instance = methods.get(el); if (instance && instance.destroy) return instance.destroy(); return undefined; }, }; if (addMethods && Array.isArray(addMethods)) { addMethods.forEach((methodName) => { methods[methodName] = (el = defaultSelector, ...args) => { const instance = methods.get(el); if (instance && instance[methodName]) return instance[methodName](...args); return undefined; }; }); } return methods; }