Fix bin/publish: use correct .env path for rspade_system Fix bin/publish script: prevent grep exit code 1 from terminating script 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
348 B
Executable File
348 B
Executable File
mode()
The mode method returns the mode value of a given key:
collect([1, 3, 3, 6, 7, 8, 9]).mode();
// [3]
collect([
{
foo: 1,
},
{
foo: 1,
},
{
foo: 2,
},
{
foo: 4,
},
]).mode('foo');
// [1]