1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-28 00:06:53 +01:00
unleash.unleash/frontend/src/utils/oneOf.ts

4 lines
113 B
TypeScript

export const oneOf = (values: string[], match: string) => {
return values.some(value => value === match);
};