mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-28 00:06:53 +01:00
4 lines
113 B
TypeScript
4 lines
113 B
TypeScript
export const oneOf = (values: string[], match: string) => {
|
|
return values.some(value => value === match);
|
|
};
|