Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. export default function (key, data) {
  2. return Array.prototype.map.call(decodeURIComponent(atob(data)), (chr, i) => {
  3. return String.fromCharCode(chr.charCodeAt(0) ^ key.charCodeAt(Math.floor( i % key.length)));
  4. }).join('')
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement