Open
Description
In the project https://github.com/cheminfo/mzData we are using fast-xml-parser to parse scientific data (mass spectra).
Those data may be quite big and it works perfectly even with files of 400Mb.
However we may have files of 1Gb or more and there is currently a text size limitation (from javascript in Chrome) that is 512Mb.
I wonder if it would be possible to accept directly an ArrayBuffer and not only a text file. The current code uses nearly exclusively the array of chars so that most of the code could be compatible with ArrayBuffer but it would need to convert deal with multiple byte characters.