Asher Gomez
Asher Gomez
> How would it work? Since it's a sync API it will block execution of other JS until it returns so there's no way to actually send a signal. Are...
I'm -1 on this. I don't see a benefit of a implementation in std if existing third party modules work great. I've used a couple of them before.
I've used and recommend: 1. [xml2js](https://deno.land/x/xml2js) - converts xml to a straightforward and easy to work with JS object. 2. [xml](https://deno.land/x/xml) - probably more extensive and mimics the familiar JSON...
Is this issue fixed by #1384?
If we’re going to come up with a well-defined test name convention, it’d be worth detailing it in the contributing section.
Examples of my suggestion for a naming convention: ``` [fs] ensureDir() creates the directory if it doesn't exist [async] delay() delays with abort option [http] serveFile() responds with not found...
Actually, yeah, that's true. Having the module stated isn't needed, but it does help. I think `ensureDir()` wins over `ensureDir` just because it's more explicit. I think the snippet you...
@kt3k, I'll do `_readline.mjs`. Is there any issue in essentially merging the `.mjs` and `.d.ts` files into a `.ts` file? I gather that `.mjs` is separated to make following the...
`spawn` is now implemented. This script: ```ts import tap from "npm:tap"; tap.pass("this is fine"); ``` Now throws this error: ``` error: Uncaught TypeError: Cannot read properties of undefined (reading '_compile')...
Is this something we'd still like to have? If so, I can give it a crack.