mirror of
https://github.com/nushell/nushell
synced 2024-12-29 14:33:13 +00:00
Lines shouldn't trim
This commit is contained in:
parent
758fce8ae3
commit
75e323ee35
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue