FourierTransformer
FourierTransformer
Ah, I see how this conflicts with what `is` does, and overall could cause a small can of worms. ``` local result:Day = temp + birthday print(result is Temperature) --...
I'm not exactly sure what you mean, it sounds like you have 10 lines you want to skip before parsing. If that's the case, you could try loading the file...
Seems to affect things loaded by string, but not things loaded via files. So this will cause an error: ```lua local options = {loadFromString=true, ignoreQuotes=true} local a = ftcsv.parse('a,b,c\n"apple,banana,carrot', ",",...
I think it happens because ftcsv modifies the original `options` table and adds in a value for `bufferSize`: ```lua if options.bufferSize == nil then options.bufferSize = 2^16 ``` so when...
Yeah, it seemed to be the buffserSize value being set. I re-ordered the logic a bit in the argument parsing, so bufferSize wont get set when using `parse` by itself,...
As nice as that offer is, I'm good with the setup that I have. It works for me as a single dev and I like the minimalism. Since this isn't...
Thanks for the PR! I was thinking about this a little, instead of cutting a hard v2 that will break versions if people upgrade (or if they don't specify versions...
Yeah, I put that label up many years back, and never quite realized it could be done in a backwards compatible way. I'm testing out this method that checks the...
huh, nevermind. That seems to be unrelated. I'll create a new issue for it. I checked the code I was playing with in https://github.com/FourierTransformer/ftcsv/commit/e1d58dfbfc9a8eb660c3f2ad8be39223206c049c
closing in favor of #42