unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
11 lines • 437 B
JavaScript
export class FakeConstraintsReadModel {
async validateConstraints(constraints) {
// In the fake read model, we simply return the input constraints without any validation.
return constraints;
}
async validateConstraint(input) {
// In the fake read model, we simply return the input constraint without any validation.
return input;
}
}
//# sourceMappingURL=fake-constraints-read-model.js.map