# xor **Repository Path**: mirrors_component/xor ## Basic Information - **Project Name**: xor - **Description**: tiny xor utility function - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-05-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # xor tiny xor utility function ## Installation Install with [component(1)](http://component.io): $ component install component/xor Or with node.js: $ npm install component-xor ## API ### xor(bool, bool) XOR two boolean values. ```js xor(true, true) // false xor(true, false) // true xor(false, true) // true xor(false, false) // false ``` ## Test ``` npm install make test ``` ## License MIT