UNPKG

ionic

Version:

A tool for creating and developing Ionic Framework mobile apps.

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 };