package.es.validator.openapi-3-1.requirement-level.mjs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apidom-ns-api-design-systems Show documentation
Show all versions of apidom-ns-api-design-systems Show documentation
API Design Systems 2021-05-07 namespace for ApiDOM.
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);
};