Returns true if x and y are true. Same as y && x.
x
y
y && x
and(true)(false)// => false Copy
and(true)(false)// => false
Generated using TypeDoc
Returns true if
x
andy
are true. Same asy && x
.