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

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

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;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy