getCurrentFieldSignature function
Last updated: 2026-03-04T23:21:38.393Z
Location
Metrics
LOC: 5
Complexity: 1
Params: 0
Signature
getCurrentFieldSignature(): : string
Summary
Generates a signature string from current form fields for change detection
Source Code
function getCurrentFieldSignature(): string {
const { fields } = detectAllFields();
const fieldSigs = fields.map((f) => `${f.selector}:${f.fieldType}`);
return fieldSigs.sort().join("|");
}
Dependencies (Outgoing)
| Target | Type |
|---|---|
| detectAllFields | calls |
Impact (Incoming)
| Source | Type |
|---|---|
| startWatching | calls |
| handleMutations | calls |
| refillNewFields | calls |