14
node_modules/jsdom/lib/generated/idl/ScrollLogicalPosition.js
generated
vendored
Normal file
14
node_modules/jsdom/lib/generated/idl/ScrollLogicalPosition.js
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
"use strict";
|
||||
|
||||
const enumerationValues = new Set(["start", "center", "end", "nearest"]);
|
||||
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 ScrollLogicalPosition`
|
||||
);
|
||||
}
|
||||
return string;
|
||||
};
|
||||
Reference in New Issue
Block a user