Is there a way in lodash to check if a strings contains one of the values from an array?
For example:
var text = \'this is some sample text\'; var values
Use _.some and _.includes:
_.some(values, (el) => _.includes(text, el));
DEMO