blob: 3260bac447ef20ebcf09af4f19e91dd7f73bf45e [file] [log] [blame]
"use strict";
const enumerationValues = new Set([
"text/html",
"text/xml",
"application/xml",
"application/xhtml+xml",
"image/svg+xml"
]);
exports.enumerationValues = enumerationValues;
exports.convert = function convert(value, { context = "The provided value" } = {}) {
const string = `${value}`;
if (!enumerationValues.has(string)) {
throw new TypeError(`${context} '${string}' is not a valid enumeration value for SupportedType`);
}
return string;
};