UNPKG
@perion/core
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
A library with the core utils for netcode development in Node.js
@perion/core
/
src
/
delegator.js
8 lines
•
138 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
class
Delegator
{
constructor
() {
this
.handlers = {}; } getHandler(opcode) {
return
this
.handlers[opcode]; } }
/** Test */