mirror of
https://github.com/nushell/nushell.git
synced 2025-06-30 06:30:08 +02:00
Lines shouldn't trim
This commit is contained in:
@ -62,7 +62,7 @@ impl Command for Lines {
|
||||
.filter_map(|s| {
|
||||
if !s.is_empty() {
|
||||
Some(Value::String {
|
||||
val: s.trim().into(),
|
||||
val: s.into(),
|
||||
span,
|
||||
})
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user