mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-20 18:18:36 +00:00
9 lines
186 B
JavaScript
Vendored
9 lines
186 B
JavaScript
Vendored
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)
|
|
}
|