mirror of
https://github.com/logos-storage/nim-serde.git
synced 2026-01-07 08:03:07 +00:00
5 lines
91 B
Nim
5 lines
91 B
Nim
|
|
import std/strutils
|
||
|
|
|
||
|
|
func flatten*(s: string): string =
|
||
|
|
s.replace(" ")
|
||
|
|
.replace("\n")
|