Filters the array
whereNotNull([1, 2, 2, 3, null, undefined, 5]); // [1,2,2,3,5]
whereNotNull([{count:1}, {count:null}, {foo:15}], "count"); // [{count:1}]
Optional
Generated using TypeDoc
Filters the array
Example
Example