mirror of
https://github.com/cachix/install-nix-action.git
synced 2025-06-09 02:14:28 +00:00
13 lines
381 B
JavaScript
13 lines
381 B
JavaScript
"use strict";
|
|
|
|
const enumerationValues = new Set(["auto", "manual"]);
|
|
module.exports = {
|
|
enumerationValues,
|
|
convert(value, { context = "The provided value" } = {}) {
|
|
const string = `${value}`;
|
|
if (!enumerationValues.has(value)) {
|
|
throw new TypeError(`${context} '${value}' is not a valid enumeration value for ScrollRestoration`);
|
|
}
|
|
return string;
|
|
}
|
|
};
|