# Description Those two commands are very complementary to `into duration` and `into filesize` when you want to coerce a particular string output. This keeps the old `format` command with its separate formatting syntax still in `nu-cmd-extra`. # User-Facing Changes `format filesize` is back accessible with the default build. The new `format duration` command is also available to everybody # Tests + Formatting
8 lines
139 B
Rust
8 lines
139 B
Rust
mod date;
|
|
mod duration;
|
|
mod filesize;
|
|
|
|
pub use self::filesize::FormatFilesize;
|
|
pub use date::FormatDate;
|
|
pub use duration::FormatDuration;
|