(rawCount: string | null)
| 1 | const parseCount = (rawCount: string | null) => |
| 2 | rawCount == null ? 0 : parseInt(rawCount, 10); |
| 3 | |
| 4 | export const CURRENT_COUNT_KEY = 'session-completed-challenges'; |
| 5 | export const SAVED_COUNT_KEY = 'saved-session-completed-challenges'; |
no outgoing calls
no test coverage detected