Patched EventEmitter for socket.io compatibility with Node >= 7

This commit is contained in:
mserranom 2019-07-25 09:22:24 +00:00
parent ae512dc9fb
commit cf0df28f4c

View file

@ -1,3 +1,9 @@
// EventEmitter has been removed from process in node >= 7
// https://github.com/nodejs/node/commit/62b544290a075fe38e233887a06c408ba25a1c71
if(process.versions.node.split('.')[0] >= 7) {
process.EventEmitter = require('events')
}
var io = require("socket.io");
if (io.version === "0.9.16") {