getAdapter function infrastructure exported ✓ 100.0%
Last updated: 2026-03-04T23:21:38.378Z
Metrics
LOC: 5
Complexity: 1
Params: 2
Coverage: 100.0% (1/1 lines, 8x executed)
Signature
getAdapter(
name: AdapterName,
): : CustomComponentAdapter | undefined
Summary
Returns the adapter matching the given name, or undefined.
Source Code
export function getAdapter(
name: AdapterName,
): CustomComponentAdapter | undefined {
return getAdapterMap().get(name);
}
Dependencies (Outgoing)
| Target | Type |
|---|---|
| getAdapterMap | calls |
| name | dynamic_call |
Impact (Incoming)
| Source | Type |
|---|---|
| fillCustomComponent | calls |
| extractCustomComponentValue | calls |
| makeAdapter | uses |