()
| 67 | * directly in an `if` condition. |
| 68 | */ |
| 69 | export function isExtractModeActive(): boolean { |
| 70 | if (!getFeatureValue_CACHED_MAY_BE_STALE('tengu_passport_quail', false)) { |
| 71 | return false |
| 72 | } |
| 73 | return ( |
| 74 | !getIsNonInteractiveSession() || |
| 75 | getFeatureValue_CACHED_MAY_BE_STALE('tengu_slate_thimble', false) |
| 76 | ) |
| 77 | } |
| 78 | |
| 79 | /** |
| 80 | * Returns the base directory for persistent memory storage. |
no test coverage detected