package.cjs.validator.openapi-3-1.requirement-level.cjs 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!
"use strict";
exports.__esModule = true;
exports.must = exports.may = void 0;
const may = (value, values) => {
if (value === null) return true;
return values.includes(value);
};
exports.may = may;
const must = (value, values) => {
return values.includes(value);
};
exports.must = must;