Add from csv and from tsv (#320)

This commit is contained in:
JT
2021-11-10 09:17:37 +13:00
committed by GitHub
parent 0f516a0830
commit bb1740d733
13 changed files with 277 additions and 14 deletions

View File

@ -415,7 +415,7 @@ pub fn eval_subexpression(
// to be used later
// FIXME: the trimming of the end probably needs to live in a better place
let mut s = input.collect_string();
let mut s = input.collect_string("");
if s.ends_with('\n') {
s.pop();
}