install-nix-action/node_modules/jsdom/lib/jsdom/living/generated/ScrollRestoration.js
Domen Kožar 49df04613e
v7
2020-02-24 13:29:22 +01:00

13 lines
381 B
JavaScript

"use strict";
const enumerationValues = new Set(["auto", "manual"]);
module.exports = {
enumerationValues,
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 ScrollRestoration`);
}
return string;
}
};