All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.es.validator.openapi-3-1.requirement-level.mjs Maven / Gradle / Ivy

The newest version!
export const may = (value, values) => {
  if (value === null) return true;
  return values.includes(value);
};
export const must = (value, values) => {
  return values.includes(value);
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy