Parses IAB VAST tags into iab-vast-model objects.
import parseVAST from 'iab-vast-parser'
const xmlStr = '<VAST version="3.0">...</VAST>'
const vast = parseVAST(xmlStr)
// ... Do your thing ...
parseVAST(xml[, options])
The parameter xml
can be either an XML string, or a parsed VAST DOM Document
or Element
.
Currently, one option
is supported: you can pass in a DOMParser
instance
via the domParser
key. If you don't do so, a new DOMParser
will be created
on the fly.
MIT