blob: 40ff17c57b49890fd98fee5dc603daa270ceadeb [file] [log] [blame]
"use strict";
const enumerationValues = new Set(["auto", "instant", "smooth"]);
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 ScrollBehavior`);
}
return string;
};