Skip to main content
Module

x/rambda/source/xnor-spec.ts

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