Is there a standardised way to read a csv buffer into an array of Javascript objects in the browser?

Let’s say you have a website that makes a fetch request to the server and gets back a CSV list. Now I want to parse the CSV values into an array of Javascript objects. Most places I’ve searched point to using Papa parse, but that’s an external library that I have to provide. Is there an standardised way to do this in a browser? In other words does the browser provide this facility by default or do I have to introduce an external dependency served to the website?