1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/utils/cleanConstraint.ts

17 lines
478 B
TypeScript
Raw Normal View History

import { singleValueOperators } from 'constants/operators';
import { IConstraint } from 'interfaces/strategy';
import { oneOf } from 'utils/oneOf';
import produce from 'immer';
export const cleanConstraint = (
constraint: Readonly<IConstraint>
): IConstraint => {
return produce(constraint, draft => {
if (oneOf(singleValueOperators, constraint.operator)) {
delete draft.values;
} else {
delete draft.value;
}
});
};