• File: xor.js
  • Full Path: /var/www/paytek-africa.com/node_modules/public-encrypt/xor.js
  • Date Modified: 07/19/2022 5:05 PM
  • File size: 129 bytes
  • MIME-type: text/plain
  • Charset: utf-8
module.exports = function xor (a, b) {
  var len = a.length
  var i = -1
  while (++i < len) {
    a[i] ^= b[i]
  }
  return a
}