properSubset
algebra.properSubset(a, b)
Returns true if A is a strict subset of B (A ⊂ B).
algebra.properSubset({type: "critical"}, {}) //-> true
algebra.properSubset({}, {}) //-> false
Returns
{Boolean}
:
true
if a
is a subset of b
and not equal to b
.