You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, imscJS uses sax.js to parse IMSC documents. This allows the same code to be used in both node and in the browser. This is also doubles the size of the packaged browser JS module.
An alternative approach is to move to a DOM parser, so that the native parser can be used in browsers, while reverting to a external DOM parser in node.