10
0
Fork 0
mirror of https://github.com/Azure/setup-helm.git synced 2026-04-06 14:56:57 +00:00
setup-helm/node_modules/jsdom/lib/jsdom/living/generated/DocumentReadyState.js
2022-06-27 14:17:15 -04:00

12 lines
423 B
JavaScript

"use strict";
const enumerationValues = new Set(["loading", "interactive", "complete"]);
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 DocumentReadyState`);
}
return string;
};