repo.or.cz
/
prosody.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Prepare required data folder for integration tests
[prosody.git]
/
util
/
bit53.lua
blob
4b5c2e9cfe9cf5e92037408099b967822dbf2516
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
};
7