nushell/src/commands/trim.rs

25 lines
721 B
Rust
Raw Normal View History

2019-06-01 05:43:59 +02:00
use crate::errors::ShellError;
use crate::object::{Primitive, Value};
use crate::prelude::*;
// TODO: "Amount remaining" wrapper
pub fn trim(args: CommandArgs) -> Result<OutputStream, ShellError> {
let input = args.input;
2019-06-16 01:03:49 +02:00
let span = args.name_span;
2019-06-01 05:43:59 +02:00
Ok(input
.values
2019-06-01 05:43:59 +02:00
.map(move |v| match v {
Value::Primitive(Primitive::String(s)) => {
ReturnSuccess::value(Value::Primitive(Primitive::String(s.trim().into())))
2019-06-01 05:43:59 +02:00
}
_ => Err(ShellError::maybe_labeled_error(
2019-06-16 01:03:49 +02:00
"Expected string values from pipeline",
"expects strings from pipeline",
span,
)),
2019-06-01 05:43:59 +02:00
})
.to_output_stream())
2019-06-01 05:43:59 +02:00
}