Files
WRNexusJS/packages/core/src/features.ts
T
2026-07-22 17:29:08 +05:30

22 lines
682 B
TypeScript

import type { Context } from "./context.ts";
export type FeatureValue = boolean | string | number;
export type FeatureRule = FeatureValue | ((ctx: Context) => FeatureValue | Promise<FeatureValue>);
export interface FeatureFlags {
get(name: string, ctx: Context): Promise<FeatureValue | undefined>;
enabled(name: string, ctx: Context): Promise<boolean>;
}
export function defineFeatureFlags(rules: Record<string, FeatureRule>): FeatureFlags {
return {
async get(name, ctx) {
const rule = rules[name];
return typeof rule === "function" ? rule(ctx) : rule;
},
async enabled(name, ctx) {
return (await this.get(name, ctx)) === true;
},
};
}