Anyone know why this might be happening? ```javascript const h = require("hyperscript"); const el = h("input", { type: "text", minlength: 42, maxlength: 420 }); console.log(el.outerHTML); ``` ```html <input type="text" maxlength="420"> ```