Can you include an option to setup what null is parsed in JSON file? I would prefer to convert null to NA rather than NULL. Ex: ``` r fromJSON("[123,null]", null = NA) # [1] 123 NA ``` rather than ``` [[1]] 123 [[2]] NULL ``` ref: https://github.com/jeroen/jsonlite/issues/70
Can you include an option to setup what null is parsed in JSON file?
I would prefer to convert null to NA rather than NULL.
Ex:
rather than
ref: jeroen/jsonlite#70