()
| 10 | export const getIncludePremium = async () => |
| 11 | Boolean(await storage.get("includePremium")) ?? false |
| 12 | export const getProblemSolved = async () => |
| 13 | Boolean(await storage.get("leetCodeProblemSolved")) ?? false |
| 14 | export const initiateLoading = async () => await storage.set("loading", true) |
| 15 | export const stopLoading = async () => await storage.set("loading", false) |
| 16 | export const getHyperTortureMode = async () => |
nothing calls this directly
no outgoing calls
no test coverage detected