includes
Collection
since 0.1.0
Returns
boolean `true` if `value` is found, else `false`.
Checks if value is in collection. If collection is a string, it's
checked for a substring of value, otherwise
SameValueZero
is used for equality comparisons. If fromIndex is negative, it's used as
the offset from the end of collection.
Example of Lodash _.includes
_.includes([1, 2, 3], 1);
// => true
_.includes([1, 2, 3], 1, 2);
// => false
_.includes({ 'a': 1, 'b': 2 }, 1);
// => true
_.includes('abcd', 'bc');
// => true