()
| 11 | * when explicitly set; otherwise falls through to tengu_onyx_plover. |
| 12 | */ |
| 13 | export function isAutoDreamEnabled(): boolean { |
| 14 | const setting = getInitialSettings().autoDreamEnabled |
| 15 | if (setting !== undefined) return setting |
| 16 | const gb = getFeatureValue_CACHED_MAY_BE_STALE<{ enabled?: unknown } | null>( |
| 17 | 'tengu_onyx_plover', |
| 18 | null, |
| 19 | ) |
| 20 | return gb?.enabled === true |
| 21 | } |
| 22 |
no test coverage detected