arrayElements method

Parser<List<JSON?>> arrayElements()

Implementation

Parser<List<JSON>> arrayElements() =>
    ref0(value).starSeparated(char(',').trim()).map((list) => list.elements);