( feature: string, defaultValue: T, )
| 717 | * This function blocks on GrowthBook initialization which can slow down startup. |
| 718 | */ |
| 719 | export async function getFeatureValue_DEPRECATED<T>( |
| 720 | feature: string, |
| 721 | defaultValue: T, |
| 722 | ): Promise<T> { |
| 723 | return getFeatureValueInternal(feature, defaultValue, true) |
| 724 | } |
| 725 | |
| 726 | /** |
| 727 | * Get a feature value from disk cache immediately. Pure read — disk is |
no test coverage detected