ai-interactive-comic-book / ai-comic-factory /src /lib /getLocalStorageShowSpeeches.ts
M96820
feat: add ai-comic-factory
903fafb
raw
history blame
389 Bytes
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
}
}