mirror of
https://github.com/nushell/nushell.git
synced 2025-07-31 17:25:03 +02:00
- fixes #16217 # Description > `group-by --to-table` does not always return a table (a list) > ```nushell > [] | group-by --to-table something > #=> ╭──────────────╮ > #=> │ empty record │ > #=> ╰──────────────╯ > ``` Fixed: ```nushell [] | group-by --to-table something #=> ╭────────────╮ #=> │ empty list │ #=> ╰────────────╯ ``` # Tests + Formatting +1 test --------- Co-authored-by: Bahex <17417311+Bahex@users.noreply.github.com>
This crate contains the majority of our commands
We allow ourselves to move some of the commands in nu-command
to nu-cmd-*
crates as needed.
Internal Nushell crate
This crate implements components of Nushell and is not designed to support plugin authors or other users directly.