What version of NeoCSV has >>emptyFieldValue:?Hi,Today I came across some bash code on a web page that loves Smalltalk, ah the horror ;-)The goal is to make it easier to look at CSV data, for which a conversion to HTML was done. To just look at CSV data in a nice tabular form, we do not have to leave Pharo at all.MultiColumnListModel new
items: (FileLocator desktop / 'test.csv' readStreamDo: [ :in |
(NeoCSVReader on: in) emptyFieldValue: ''; upToEnd ]);