PK

ADDRLIN : /home/questend/public_html/domains/flaxzy.com/node_modules/killable/
FLL :
Current File : /home/questend/public_html/domains/flaxzy.com/node_modules/killable/index.js

module.exports = function makeKillable(server) {
  var sockets = [];

  server.on('connection', function (socket) {
    //add socket to list
    sockets.push(socket);

    socket.once('close', function () {
      //remove socket from list
      sockets.splice(sockets.indexOf(socket), 1);
    });
  });

  server.kill = function (cb) {
    server.close(cb);
    sockets.forEach(function (socket) {
      socket.destroy();
    });
    // reset so the server can be restarted
    sockets = [];
  };

  return server;
};


PK 99
E-SHOP || DASHBOARD
404

Page Not Found

It looks like you found a glitch in the matrix...

← Back to Home