Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 389 Bytes
2e12a66 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
export function getLocalStorageShowSpeeches(defaultValue: boolean): boolean {
try {
const result = localStorage.getItem("AI_COMIC_FACTORY_SHOW_SPEECHES")
if (typeof result !== "string") {
return defaultValue
}
if (result === "true") { return true }
if (result === "false") { return false }
return defaultValue
} catch (err) {
return defaultValue
}
} |