Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX: removing ANSI escape char from White_Chars table
Else TRIM is eating it and so making invalid ANSI escape sequence Before this change: ``` >> trim " ^[[4AHello" == "[4AHello" ``` Now: ``` >> trim " ^[[4AHello" == "^[[4AHello" ``` Note that in this example "^[[4A" is ANSI escape sequence which tells that cursor should be moved 4 lines up
- Loading branch information