Sha256: e0239cf7701d13284f6174133f238aec5f3cb84d787f1017621d73e8bae80cb0
Contents?: true
Size: 917 Bytes
Versions: 20
Compression:
Stored size: 917 Bytes
Contents
"use strict"; const conversions = require("webidl-conversions"); const utils = require("./utils.js"); const EventInit = require("./EventInit.js"); exports._convertInherit = (obj, ret, { context = "The provided value" } = {}) => { EventInit._convertInherit(obj, ret, { context }); { const key = "state"; let value = obj === undefined || obj === null ? undefined : obj[key]; if (value !== undefined) { value = conversions["any"](value, { context: context + " has member 'state' that" }); ret[key] = value; } else { ret[key] = null; } } }; 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; };
Version data entries
20 entries across 20 versions & 1 rubygems