blob: bc198c1cf75211def50d74b0d3385e1cffa5480b [file] [log] [blame]
"use strict";
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(string)) {
throw new TypeError(`${context} '${string}' is not a valid enumeration value for VisibilityState`);
}
return string;
};