Inside of a JsonAdapter in moshi, if I peek and fi...
# squarelibraries
b
Inside of a JsonAdapter in moshi, if I peek and find an object, will performing a
reader.nextString()
give me the whole object as a string? I’m trying to split
Copy code
[{...}, {...}, {...}]
into a list of JSON object strings
Copy code
listOf("{...}", "{...}", "{...}")