I\'m trying to use fromJSON() to read in a .json file with multiple objects structured as follows:
fromJSON()
{ \"key11\": value11, \"key12\": value12 } { \"ke
Assuming you know it's one per line, and no weird line breaks,
lapply(readLines(filename), fromJSON, flatten = TRUE)