UNPKG

react-router-ga

Version:

[![Downloads](https://img.shields.io/npm/dm/react-router-ga)](https://npm.im/react-router-ga) [![Version](https://img.shields.io/npm/v/react-router-ga)](https://npm.im/react-router-ga) [![License](https://img.shields.io/npm/l/react-router-ga)](https://ope

10 lines (7 loc) 186 B
module.exports = function xorInplace (a, b) { var length = Math.min(a.length, b.length) for (var i = 0; i < length; ++i) { a[i] = a[i] ^ b[i] } return a.slice(0, length) }