1.261.8
Patch Changes
- #2276
97961e4
Thanks @dustinbyrne! -isFeatureEnabled
now returnsundefined
(instead offalse
) for missing or disabled feature flags, aligning with the documentation. Previously,undefined
was returned only before flags had loaded, and missing/disabled flags returnedfalse
. This change clarifies the difference between flags that exist but don't match (false
) and flags that don’t exist or are disabled (undefined
).