Sha256: 60450987324e0c71f19e18656099e45f0ec9e5d3a5f566d87458eed20c0ff346
Contents?: true
Size: 416 Bytes
Versions: 26
Compression:
Stored size: 416 Bytes
Contents
"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; };
Version data entries
26 entries across 26 versions & 1 rubygems