12
node_modules/jsdom/lib/generated/idl/ScrollRestoration.js
generated
vendored
Normal file
12
node_modules/jsdom/lib/generated/idl/ScrollRestoration.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
"use strict";
|
||||
|
||||
const enumerationValues = new Set(["auto", "manual"]);
|
||||
exports.enumerationValues = enumerationValues;
|
||||
|
||||
exports.convert = (globalObject, value, { context = "The provided value" } = {}) => {
|
||||
const string = `${value}`;
|
||||
if (!enumerationValues.has(string)) {
|
||||
throw new globalObject.TypeError(`${context} '${string}' is not a valid enumeration value for ScrollRestoration`);
|
||||
}
|
||||
return string;
|
||||
};
|
||||
Reference in New Issue
Block a user