()
| 225 | * same priority as the getters. Used by the /config Gates tab. |
| 226 | */ |
| 227 | export function getAllGrowthBookFeatures(): Record<string, unknown> { |
| 228 | if (remoteEvalFeatureValues.size > 0) { |
| 229 | return Object.fromEntries(remoteEvalFeatureValues) |
| 230 | } |
| 231 | return getGlobalConfig().cachedGrowthBookFeatures ?? {} |
| 232 | } |
| 233 | |
| 234 | export function getGrowthBookConfigOverrides(): Record<string, unknown> { |
| 235 | return getConfigOverrides() ?? {} |
nothing calls this directly
no test coverage detected