From 410ce9f95eea56b5b6c6ee4a9ae71ca5294a3889 Mon Sep 17 00:00:00 2001 From: Eric MacDonald Date: Sun, 8 Aug 2021 11:39:13 -0400 Subject: [PATCH] Remove event emitter We can add non-blocking code at a later time --- zefie_wtvp_minisrv/WTVLzpf.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/zefie_wtvp_minisrv/WTVLzpf.js b/zefie_wtvp_minisrv/WTVLzpf.js index 8bc9236b..488e000f 100644 --- a/zefie_wtvp_minisrv/WTVLzpf.js +++ b/zefie_wtvp_minisrv/WTVLzpf.js @@ -1,5 +1,3 @@ -var EventEmitter = require('events').EventEmitter; - /** * Pure-JS implementation of WebTV's LZPF compression * @@ -482,4 +480,4 @@ class WTVLzpf { } } -module.exports = WTVLzpf; \ No newline at end of file +module.exports = WTVLzpf;