| DIR:/proc/thread-self/cwd/bright.medisavehealthcarebd.com/node_modules/public-encrypt/ |
| Current File : //proc/thread-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
}
|