Which of these is a genuine, common cause of a slow memory leak in long-running Node services?const emitter = new EventEmitter(); function handle(req, res) { emitter.on('tick', () => res.end('ok')); // per request }