Prepare required data folder for integration tests
[prosody.git] / util / bit53.lua
blob4b5c2e9cfe9cf5e92037408099b967822dbf2516
1 -- Only the operators needed by net.websocket.frames are provided at this point
2 return {
3 band = function (a, b) return a & b end;
4 bor = function (a, b) return a | b end;
5 bxor = function (a, b) return a ~ b end;
6 };