deno-xml-parser icon indicating copy to clipboard operation
deno-xml-parser copied to clipboard

XML parser ported from https://github.com/segmentio/xml-parser

Results 9 deno-xml-parser issues
Sort by recently updated
recently updated
newest added

could you compile the src so it can be imported in browser as well? if the package is so small, maybe it can be worth to have the typing in...

## Repro ``` deno run --allow-all main.ts ``` where main.ts: ``` import parse from "https://denopkg.com/nekobato/deno-xml-parser/index.ts" import * as log from "https://deno.land/std/log/mod.ts"; const infile = "./test.xml" const input = await Deno.readTextFile(infile)...

I had to parse an xml file with missing declaration. Parsing returned object with both, declaration and root, as undefined. After a little research the problem was, after replacing all...

Not an issue specifically with the package, it seems good so far from what I've seen. Would you mind tagging a release? It makes things easier when importing Deno modules...

When parsing this large XML file, the output is only a tiny fraction of the full file: ``` { "declaration": { "attributes": { "version": "1.0", "encoding": "UTF-8" } } }...

- Change typing of children from `any` to `Xml` - Type attributes with new type `XmlAttribute`