Filters the array
whereLike(["foo", "bar", "hello", "world"], "o"); // ["foo","hello","world"]
whereLike([{foo:"hello"}, {foo:"bar"}, {foo:"world"}], "foo", /o/i); // [{foo:"hello"},{foo:"world"}]
Generated using TypeDoc
Filters the array
Example