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
x
ory
is true. Same asy || x
.