| DIR:/proc/self/root/proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/public-encrypt/ |
| Current File : //proc/self/root/proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/public-encrypt/xor.js |
module.exports = function xor (a, b) {
var len = a.length
var i = -1
while (++i < len) {
a[i] ^= b[i]
}
return a
}
|