aboutsummaryrefslogtreecommitdiff
path: root/node_modules/jsdom/lib/jsdom/living/generated/ShadowRootMode.js
blob: 3a15717d713e765866708411028cf5c5a632694c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
"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;
};