net/websocket/frames.lua
changeset 8445 3a390fa561bf
parent 7262 d8300985f2bb
child 8731 41c959c5c84b
--- a/net/websocket/frames.lua	Fri Dec 01 05:13:28 2017 +0100
+++ b/net/websocket/frames.lua	Sat Dec 02 02:12:06 2017 +0100
@@ -21,8 +21,8 @@
 local s_byte = string.byte;
 local s_char= string.char;
 local s_sub = string.sub;
-local s_pack = string.pack;
-local s_unpack = string.unpack;
+local s_pack = string.pack; -- luacheck: ignore 143
+local s_unpack = string.unpack; -- luacheck: ignore 143
 
 if not s_pack and softreq"struct" then
 	s_pack = softreq"struct".pack;