extractValue method infrastructure
Last updated: 2026-03-04T23:21:38.384Z
Metrics
LOC: 6
Complexity: 2
Params: 1
Signature
extractValue(wrapper: HTMLElement): : string | null
Source Code
extractValue(wrapper: HTMLElement): string | null {
const input = wrapper.querySelector<HTMLInputElement | HTMLTextAreaElement>(
"input, textarea",
);
return input ? input.value : null;
},
No outgoing dependencies.
No incoming dependencies.