We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bda995 commit e7192afCopy full SHA for e7192af
lib/feature_toggle.ts
@@ -31,6 +31,7 @@
31
* flag and all associated checks can be removed from the codebase.
32
*/
33
34
-// export const holdout = () => false as const;
+// example feature flag definition
35
+// export const wipFeat = () => false as const;
36
37
export type IfActive<T extends () => boolean, Y, N = unknown> = ReturnType<T> extends true ? Y : N;
0 commit comments