Table of contents
and (function)
Similar to R.and but accepts only boolean
values, thus will not work considering “truthy/falsy”ness.
Signature
export function and(a: boolean): (b: boolean) => boolean;
export function and(a: boolean, b: boolean): boolean; { ... }
Added in v0.1.1