blob: 4cd4a69bee9583ea8a6298933d47e382e9259b02 [file] [log] [blame]
"use strict";
const enumerationValues = new Set(["start", "center", "end", "nearest"]);
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 ScrollLogicalPosition`);
}
return string;
};