I am supporting a website development work. Two binary files are downloaded to client browser upon request. The two files can come from two different sources.
The requirement is to concatenate both the files into a single file. Creating a single file in JavaScript and writing first downloaded content followed by second downloaded content is also acceptable.
Is this doable in JavaScript using FileAPI or any other related APIs?
Do I need to explore Chrome/Firefox Extension to achieve the same?