Right now there's no way to distinguish between empty strings and missing data in formatted output. ``` csvFormatRows([['value', 'null', 'undefined', 'string'], [0,null,undefined,'']]); ``` I'd like this to return: ``` value 0,,,"" ``` But instead I get: ``` value 0,,, ```