Sha256: a30717f20c3813e436b52b392fdb9ddf63d7d1db699a40eb12dfbf2de5fffc3c
Contents?: true
Size: 1.3 KB
Versions: 20
Compression:
Stored size: 1.3 KB
Contents
"use strict"; const conversions = require("webidl-conversions"); const utils = require("./utils.js"); const ScrollLogicalPosition = require("./ScrollLogicalPosition.js"); const ScrollOptions = require("./ScrollOptions.js"); exports._convertInherit = (obj, ret, { context = "The provided value" } = {}) => { ScrollOptions._convertInherit(obj, ret, { context }); { const key = "block"; let value = obj === undefined || obj === null ? undefined : obj[key]; if (value !== undefined) { value = ScrollLogicalPosition.convert(value, { context: context + " has member 'block' that" }); ret[key] = value; } else { ret[key] = "start"; } } { const key = "inline"; let value = obj === undefined || obj === null ? undefined : obj[key]; if (value !== undefined) { value = ScrollLogicalPosition.convert(value, { context: context + " has member 'inline' that" }); ret[key] = value; } else { ret[key] = "nearest"; } } }; 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