libs
libs copied to clipboard
š± Collection of carefully crafted TypeScript standalone libraries. Minimal, unbloated, convenient.
This code sample: const src = ` blah xlub blah `; const parsed = parse(src); Fails with error: Uncaught SyntaxError: Expected next sequence to be "
I had trouble with Strava accepting my GPX files that were generated using this tool. Turns out it's because the first line of the file ``` ``` was turning into...
Since #7, we use `Flux` (~ `Deno.reader & Deno.seeker`) to navigate through parsed stream/string. Unfortunately there are some performance issues, which could maybe be improved by using some sort of...
While the test coverage is pretty good, there are still some cases that needs to be covered, like below: ``` cover file:///home/runner/work/xml/xml/mod.ts ... 100.000% (3/3) cover file:///home/runner/work/xml/xml/parse.ts ... 100.000% (9/9)...
When importing XML that contains `` tags, re-exporting strips those tags. I don't believe there are any options available to re-instate them on output. This causes issues when attempting to...
Thanks for providing this module, it's tremendously helpful! ``` > import { parse } from "./deps.ts" undefined > parse("001") { foo: 1 } > parse("313130e130") { foo: 3.1313e+135 } >...
Closes #19
Hi, Iām curious if will be support for transforming buffers to qr code? Currently it supports strings or URL only. Thanks!!
Example using a deno file ```ts import { parse } from "./parse.ts" using file = await Deno.open("bench/assets/small.xml") console.log(parse(file))
This PR addresses several key issues and improvements in the propagation and isolation of state across contexts, ensuring correct behavior with shared and isolated data. Additionally, it refines the handling...