Porting 'char' command from nushell to engine-q (#500)

* Port 'char' command from nushell to engine-q

* fixed unit tests

* Actually fixed unit tests
This commit is contained in:
Matthew Auld
2021-12-15 18:08:12 -05:00
committed by GitHub
parent e289630920
commit 89e2169521
4 changed files with 268 additions and 0 deletions

View File

@ -1,4 +1,5 @@
mod build_string;
mod char_;
mod format;
mod parse;
mod size;
@ -6,6 +7,7 @@ mod split;
mod str_;
pub use build_string::BuildString;
pub use char_::Char;
pub use format::*;
pub use parse::*;
pub use size::Size;