(on)
| 4220 | const STORAGE_KEY_MODE = "glowify-artist-bg-mode"; |
| 4221 | const STORAGE_KEY_CUSTOM = "glowify-artist-bg-image"; |
| 4222 | const STORAGE_KEY_URL = "glowify-artist-bg-url"; |
| 4223 | const getSavedMode = () => localStorage.getItem(STORAGE_KEY_MODE) || "theme"; |
| 4224 | const setSavedMode = (mode) => localStorage.setItem(STORAGE_KEY_MODE, mode); |
| 4225 | const getCustomImage = () => localStorage.getItem(STORAGE_KEY_CUSTOM); |
| 4226 | const getCustomUrl = () => localStorage.getItem(STORAGE_KEY_URL); |
| 4227 | function isArtistPage() { |
| 4228 | try { |
no test coverage detected