Skip to main content
Module

x/rambda/source/or.spec.js

Faster and smaller alternative to Ramda
Go to Latest
File
import {or} from './or'
test('happy', () => { expect(or(0, 'foo')).toBe('foo') expect(or(true, true)).toBeTrue() expect(or(false)(true)).toBeTrue() expect(or(false, false)).toBeFalse()})