Leon4gr45's picture
Upload folder using huggingface_hub (part 10)
8d955a0 verified
Raw
History Blame Contribute Delete
186 Bytes
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)
}