mirror of
https://github.com/actions/setup-java.git
synced 2025-04-20 09:56:46 +00:00
13 lines
402 B
JavaScript
13 lines
402 B
JavaScript
"use strict";
|
|
|
|
const enumerationValues = new Set(["loading", "interactive", "complete"]);
|
|
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 DocumentReadyState`);
|
|
}
|
|
return string;
|
|
}
|
|
};
|