makeInput function test
Last updated: 2026-03-01T23:25:47.096Z
Metrics
LOC: 5
Complexity: 1
Params: 1
Signature
makeInput(type: string): : HTMLInputElement
Source Code
function makeInput(type: string): HTMLInputElement {
const el = document.createElement("input");
el.type = type;
return el;
}
Dependencies (Outgoing)
| Target | Type |
|---|---|
| detectBasicType | uses |
| makeInput | calls |