Michael Hunter
Michael Hunter
The .NET equivalent [XSLT transformer](https://docs.microsoft.com/en-us/dotnet/api/system.xml.xsl.xslcompiledtransform.transform?view=net-5.0#System_Xml_Xsl_XslCompiledTransform_Transform_System_Xml_XmlReader_System_Xml_Xsl_XsltArgumentList_System_IO_TextWriter_) allows you to provide arguments to satisfy `` in the XSLT doc. ```cs public void Transform(System.Xml.XmlReader input, System.Xml.Xsl.XsltArgumentList? arguments, System.IO.TextWriter results); ``` I'm wondering if...
# Async/await in Microvium I'm not "promising" that async/await will be implemented in Microvium, but it's on my radar. This GitHub ticket is a consolidation of my personal design notes...
## Symptoms If any test fails, not all the console output is shown (console output is truncated). Problem does not show up in standard Windows `cmd`, but does show up...
I wanted to test out this library with DataDog. I wanted to evaluate the performance under load. I basically copied the example code and then got it to spit out...
I'm unable to see any branch coverage in the "test coverage" pane. I only see statement and function coverage. I've created a minimal example to reproduce this. ```js // main.mjs...