Method
enabled
(id: FlagId)
Source from the content-addressed store, hash-verified
| 37 | } |
| 38 | |
| 39 | enabled(id: FlagId): boolean { |
| 40 | return this.explain(id)?.enabled ?? false; |
| 41 | } |
| 42 | |
| 43 | explain(id: FlagId): ExperimentalFeatureState | undefined { |
| 44 | const def = this.byId.get(id); |