Skip to main content
Module

x/rambda/or-spec.ts

Faster and smaller alternative to Ramda
Go to Latest
File
import {or} from 'ramda'
describe('R.or', () => { it('happy', () => { const result = or(true, false) result // $ExpectType boolean }) it('curried', () => { const result = or(1)('foo') result // $ExpectType number | "foo" })})