UNPKG
brush_cli
Version:
latest (0.0.2)
0.0.2
0.0.1
A tool for creating and developing cmos PC Framework project.
brush_cli
/
node_modules
/
public-encrypt
/
xor.js
8 lines
•
131 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module
.
exports
= function
xor
(a, b)
{
var
len
=
a.length;
var
i
=
-
1
;
while
(++i < len) { a[i] ^= b[i]; }
return
a };