It is largely used within the library itself.
/* Part of the contains validator */
const contains = (value) => compose(
when(isString, (string) => string.includes(value)),
when(Array.isArray, arrayContains(value)),
when(not(or(isString, Array.isArray)), stubFalse),
);