jsdom
Version:
A JavaScript implementation of many web standards
13 lines (10 loc) • 414 B
JavaScript
;
const enumerationValues = new Set(["hidden", "visible", "prerender"]);
exports.enumerationValues = enumerationValues;
exports.convert = function convert(value, { context = "The provided value" } = {}) {
const string = `${value}`;
if (!enumerationValues.has(value)) {
throw new TypeError(`${context} '${value}' is not a valid enumeration value for VisibilityState`);
}
return string;
};