net.websocket.frames: Ignore Lua 5.3-only fields [luacheck]

This commit is contained in:
Kim Alvefur 2017-12-02 02:12:06 +01:00
parent e2ef028b09
commit 6f1b772ce0

View file

@ -21,8 +21,8 @@ local t_concat = table.concat;
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;