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