Skip to main content
Module

x/mysql/src/util.ts

MySQL driver for Deno
Extremely Popular
Go to Latest
File
export function xor(a: Uint8Array, b: Uint8Array): Uint8Array { return a.map((byte, index) => { return byte ^ b[index]; });}