From 2f0d514df01d2a064a2b2a002df064a97f7972b9 Mon Sep 17 00:00:00 2001 From: vulcainman Date: Tue, 10 Oct 2023 09:38:20 +0200 Subject: [PATCH] Remove the unused NOT_QU_MASK constant The code using this constant was removed by the commit a7a0b78b41219b40d28d71232f79f8170f528f30 --- index.js | 1 - 1 file changed, 1 deletion(-) diff --git a/index.js b/index.js index b7e4a04..a44d87f 100644 --- a/index.js +++ b/index.js @@ -13,7 +13,6 @@ const RESPONSE_FLAG = 1 << 15 const FLUSH_MASK = 1 << 15 const NOT_FLUSH_MASK = ~FLUSH_MASK const QU_MASK = 1 << 15 -const NOT_QU_MASK = ~QU_MASK const name = exports.name = {}