UNPKG

@perion/core

Version:

A library with the core utils for netcode development in Node.js

8 lines 138 B
class Delegator { constructor() { this.handlers = {}; } getHandler(opcode) { return this.handlers[opcode]; } } /** Test */