mirror of
https://github.com/nushell/nushell
synced 2025-01-09 19:59:02 +00:00
738541f727
* WIP for moving nu-data out * Refactor nu-data out of nu-cli * Remove unwraps * Remove unwraps
20 lines
551 B
Rust
20 lines
551 B
Rust
use nu_protocol::{hir::Number, Primitive};
|
|
use nu_table::TextStyle;
|
|
|
|
pub fn number(number: impl Into<Number>) -> Primitive {
|
|
let number = number.into();
|
|
|
|
match number {
|
|
Number::Int(int) => Primitive::Int(int),
|
|
Number::Decimal(decimal) => Primitive::Decimal(decimal),
|
|
}
|
|
}
|
|
|
|
pub fn style_primitive(primitive: &Primitive) -> TextStyle {
|
|
match primitive {
|
|
Primitive::Int(_) | Primitive::Filesize(_) | Primitive::Decimal(_) => {
|
|
TextStyle::basic_right()
|
|
}
|
|
_ => TextStyle::basic(),
|
|
}
|
|
}
|