🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
455 B
Executable File
455 B
Executable File
whereNotNull()
The whereNotNull method filters items where the given key is not null.
const collection = collect([{
name: 'Mohamed Salah',
}, {
name: null,
}, {
name: 'Darwin Núñez',
}]);
const filtered = collection.whereNotNull();
filtered.all();
// [
// { name: 'Mohamed Salah' },
// { name: 'Darwin Núñez' },
// ]