mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-06-04 03:31:12 +00:00
14 lines
402 B
JavaScript
14 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;
|
||
|
}
|
||
|
};
|