Jeff Terrell
Jeff Terrell
Treat false attribute values like null/undefined I noticed that when an attribute value is `null` or `undefined`, it's omitted entirely: const x = require('hyperaxe') x.input({name: null, id: undefined, type: 'a'}).outerHTML...
Before this commit, the following code: const h = require('hyperscript') h('.c1.c2', {class: 'c2 c3'}, 'Hello').outerHTML ...yields: 'Hello' This is actually incorrect HTML according to the [W3C Markup Validator](https://validator.w3.org/#validate_by_input). The correct...
(First of all, thanks for writing this useful little library. :smile: I'm attempting to evangelize Clojure among some colleagues who are more accustomed to Rails and browser tests, and I...
I tried the basic example in the README. It failed with a 500 Internal Server Error and the following JSON body: { "message": "Cannot read properties of undefined (reading 'x-forwarded-proto')",...
This crosses the v5.0.0 version, which required some changes to the import paths. All tests still pass. It turns out crossing this threshold is important for us, because we depend...