nushell/src/commands/trim.rs

41 lines
929 B
Rust
Raw Normal View History

use crate::commands::WholeStreamCommand;
use crate::data::Value;
2019-09-11 16:36:50 +02:00
use crate::errors::ShellError;
2019-06-01 05:43:59 +02:00
use crate::prelude::*;
pub struct Trim;
impl WholeStreamCommand for Trim {
fn name(&self) -> &str {
"trim"
}
fn signature(&self) -> Signature {
Signature::build("trim")
}
fn usage(&self) -> &str {
"Trim leading and following whitespace from text data."
}
fn run(
&self,
args: CommandArgs,
registry: &CommandRegistry,
) -> Result<OutputStream, ShellError> {
trim(args, registry)
}
}
fn trim(args: CommandArgs, _registry: &CommandRegistry) -> Result<OutputStream, ShellError> {
2019-06-01 05:43:59 +02:00
let input = args.input;
Ok(input
.values
2019-07-09 06:31:26 +02:00
.map(move |v| {
let string = String::extract(&v)?;
ReturnSuccess::value(Value::string(string.trim()).simple_spanned(v.span()))
2019-07-09 06:31:26 +02:00
})
.to_output_stream())
2019-06-01 05:43:59 +02:00
}