Skip to main content
The Deno 2 Release Candidate is here
Learn more

deno-xor

Usage

A little library to have exclusive or function. Import xor function mod.ts file. It takes two boolean parameters and returns:

(true, true) = false (true, false) = true (false, true) = true (false, false) = false