mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
7 lines
225 B
Lua
7 lines
225 B
Lua
-- Only the operators needed by net.websocket.frames are provided at this point
|
|
return {
|
|
band = function (a, b) return a & b end;
|
|
bor = function (a, b) return a | b end;
|
|
bxor = function (a, b) return a ~ b end;
|
|
};
|
|
|