Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/pmb/node_modules/jsdom/lib/jsdom/living/generated/ drwxr-xr-x | |
| Viewing file: Select action/file-type: "use strict";
const conversions = require("webidl-conversions");
const utils = require("./utils.js");
const EventModifierInit = require("./EventModifierInit.js");
exports._convertInherit = (obj, ret, { context = "The provided value" } = {}) => {
EventModifierInit._convertInherit(obj, ret, { context });
{
const key = "changedTouches";
let value = obj === undefined || obj === null ? undefined : obj[key];
if (value !== undefined) {
if (!utils.isObject(value)) {
throw new TypeError(context + " has member 'changedTouches' that" + " is not an iterable object.");
} else {
const V = [];
const tmp = value;
for (let nextItem of tmp) {
nextItem = utils.tryImplForWrapper(nextItem);
V.push(nextItem);
}
value = V;
}
ret[key] = value;
} else {
ret[key] = [];
}
}
{
const key = "targetTouches";
let value = obj === undefined || obj === null ? undefined : obj[key];
if (value !== undefined) {
if (!utils.isObject(value)) {
throw new TypeError(context + " has member 'targetTouches' that" + " is not an iterable object.");
} else {
const V = [];
const tmp = value;
for (let nextItem of tmp) {
nextItem = utils.tryImplForWrapper(nextItem);
V.push(nextItem);
}
value = V;
}
ret[key] = value;
} else {
ret[key] = [];
}
}
{
const key = "touches";
let value = obj === undefined || obj === null ? undefined : obj[key];
if (value !== undefined) {
if (!utils.isObject(value)) {
throw new TypeError(context + " has member 'touches' that" + " is not an iterable object.");
} else {
const V = [];
const tmp = value;
for (let nextItem of tmp) {
nextItem = utils.tryImplForWrapper(nextItem);
V.push(nextItem);
}
value = V;
}
ret[key] = value;
} else {
ret[key] = [];
}
}
};
exports.convert = function 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);
exports._convertInherit(obj, ret, { context });
return ret;
};
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0264 ]-- |