Returns true if fa(x) or fb(x) are true. Same as fb(x) || fa(x).
fa(x)
fb(x)
fb(x) || fa(x)
only(isOdd)(x => x === 2)(2)// => trueonly(isOdd)(x => x === 2)(4)// => false Copy
only(isOdd)(x => x === 2)(2)// => trueonly(isOdd)(x => x === 2)(4)// => false
Generated using TypeDoc
Returns true if
fa(x)orfb(x)are true. Same asfb(x) || fa(x).