swc/crates/swc_bundler/tests/.cache/deno/26011cfcdccf2c97ce392f5122ffdf185e7c86c6.ts
2021-11-09 20:42:49 +09:00

9 lines
189 B
TypeScript

// Loaded from https://deno.land/x/mysql/src/util.ts
export function xor(a: Uint8Array, b: Uint8Array): Uint8Array {
return a.map((byte, index) => {
return byte ^ b[index];
});
}