UNPKG

data-provider-temporary

Version:

Library that helps with server-to-client synchronization of data

8 lines 131 B
module.exports = function xor(a, b) { var len = a.length; var i = -1; while (++i < len) { a[i] ^= b[i]; } return a };