Skip to content

Instantly share code, notes, and snippets.

@slavarazum
Created December 22, 2022 00:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save slavarazum/edbd8e96b7060f4b188e470287f715e7 to your computer and use it in GitHub Desktop.
Save slavarazum/edbd8e96b7060f4b188e470287f715e7 to your computer and use it in GitHub Desktop.
One of Value
export default function oneOf(values) {
return function (value) {
return values.indexOf(value) !== -1;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment