mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-21 05:24:45 +00:00
42 lines
1.2 KiB
JavaScript
42 lines
1.2 KiB
JavaScript
"use strict";
|
|
|
|
const conversions = require("webidl-conversions");
|
|
const utils = require("./utils.js");
|
|
|
|
module.exports = {
|
|
convertInherit(obj, ret, { context = "The provided value" } = {}) {
|
|
{
|
|
const key = "bubbles";
|
|
let value = obj === undefined || obj === null ? undefined : obj[key];
|
|
if (value !== undefined) {
|
|
value = conversions["boolean"](value, { context: context + " has member bubbles that" });
|
|
|
|
ret[key] = value;
|
|
} else {
|
|
ret[key] = false;
|
|
}
|
|
}
|
|
|
|
{
|
|
const key = "cancelable";
|
|
let value = obj === undefined || obj === null ? undefined : obj[key];
|
|
if (value !== undefined) {
|
|
value = conversions["boolean"](value, { context: context + " has member cancelable that" });
|
|
|
|
ret[key] = value;
|
|
} else {
|
|
ret[key] = false;
|
|
}
|
|
}
|
|
},
|
|
|
|
convert(obj, { context = "The provided value" } = {}) {
|
|
if (obj !== undefined && typeof obj !== "object" && typeof obj !== "function") {
|
|
throw new TypeError(`${context} is not an object.`);
|
|
}
|
|
|
|
const ret = Object.create(null);
|
|
module.exports.convertInherit(obj, ret, { context });
|
|
return ret;
|
|
}
|
|
};
|