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