blob: 3a15717d713e765866708411028cf5c5a632694c [file] [log] [blame]
"use strict";
const enumerationValues = new Set(["open", "closed"]);
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 ShadowRootMode`);
}
return string;
};