dashboard
repositories
filestore
activity
search
login
刘苏义
/
ruoyi-api
forked from
ard/ruoyi-api
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
修改生产配置文件和无人机日志
‘liusuyi’
2024-01-13
43f46c3801b0aa8544a1703e4f1a27ecc8db22b8
[~liusuyi/ruoyi-api.git]
/
ruoyi-ui
/
node_modules
/
buffer-xor
/
inplace.js
1
2
3
4
5
6
7
8
9
module.exports = function xorInplace (a, b) {
var length = Math.min(a.length, b.length)
for (var i = 0; i < length; ++i) {
a[i] = a[i] ^ b[i]
}
return a.slice(0, length)
}