Skip to main content
Module

x/rambda/source/xor-spec.ts

Faster and smaller alternative to Ramda
Go to Latest
File
import {xor} from 'rambda'
describe('R.xor', () => { it('happy', () => { xor(true, false) // $ExpectType boolean }) it('curry', () => { xor(true)(false) // $ExpectType boolean })})