Skip to content

Commit e7192af

Browse files
committed
up
1 parent 0bda995 commit e7192af

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/feature_toggle.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
* flag and all associated checks can be removed from the codebase.
3232
*/
3333

34-
// export const holdout = () => false as const;
34+
// example feature flag definition
35+
// export const wipFeat = () => false as const;
3536

3637
export type IfActive<T extends () => boolean, Y, N = unknown> = ReturnType<T> extends true ? Y : N;

0 commit comments

Comments
 (0)