Exit Full View

Games Cupboard / build / js / node_modules / webpack-dev-server / lib / servers / BaseServer.js

'use strict';

// base class that users should extend if they are making their own
// server implementation
module.exports = class BaseServer {
  constructor(server) {
    this.server = server;
    this.clients = new Set();
  }
};