UNPKG

iab-vast-parser

Version:

Parses IAB VAST tags into iab-vast-model objects.

10 lines (8 loc) 214 B
import { DOMParser } from 'xmldom' import parse from './parse' export default (xml, options = {}) => { if (options.domParser == null) { options.domParser = new DOMParser() } return parse(xml, options) }