UNPKG

react-youtube-playlist

Version:

A react component for displaying the contents of a user's YouTube playlist.

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