JSPM

alegrify-xor

1.0.0
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 1
    • Score
      100M100P100Q13201F
    • License MIT

    Logical xor operator for JS

    Package Exports

    • alegrify-xor

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (alegrify-xor) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    XOR

    Build Status NPM

    Logical xor operator for JS

    Boolean table

    | Condition | Condition | Output | |-----------|–----------|--------| | false | false | false | | false | true | true | | true | false | true | | true | true | false |

    Usage

    const xor = require('alegrify-xor');
    
    xor(true, false) // will return true