(listState)
| 1044 | } |
| 1045 | |
| 1046 | function getListStateEntries(listState) { |
| 1047 | if (!listState) return []; |
| 1048 | if (listState instanceof Map) return Array.from(listState.entries()); |
| 1049 | return Object.entries(listState); |
| 1050 | } |
| 1051 | |
| 1052 | function setListStateEntry(listState, key, value) { |
| 1053 | if (listState instanceof Map) { |
no outgoing calls
no test coverage detected