(listKey)
| 143 | } |
| 144 | |
| 145 | function getListUpdatedAtStorageKey(listKey) { |
| 146 | if (!listKey || listKey === "0") return null; |
| 147 | return `${CONSTANTS.LIST_UPDATED_AT_PREFIX}${listKey}`; |
| 148 | } |
| 149 | |
| 150 | function formatListUpdatedAt(value) { |
| 151 | if (!value) return ""; |
no outgoing calls
no test coverage detected