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