Returns true if x or y is true. Same as y || x.
x
y
y || x
or(true)(false)// => true Copy
or(true)(false)// => true
Generated using TypeDoc
Returns true if
xoryis true. Same asy || x.