Sha256: e8db739ede23b769ff947d55162fdd599544f2c5f411d3c70b10aa7d0cac318f
Contents?: true
Size: 1011 Bytes
Versions: 26
Compression:
Stored size: 1011 Bytes
Contents
"use strict"; const conversions = require("webidl-conversions"); const utils = require("./utils.js"); exports.convert = (globalObject, value, { context = "The provided value" } = {}) => { function invokeTheCallbackFunction(event) { const thisArg = utils.tryWrapperForImpl(this); let callResult; if (typeof value === "function") { event = utils.tryWrapperForImpl(event); callResult = Reflect.apply(value, thisArg, [event]); } callResult = conversions["any"](callResult, { context: context, globals: globalObject }); return callResult; } invokeTheCallbackFunction.construct = event => { event = utils.tryWrapperForImpl(event); let callResult = Reflect.construct(value, [event]); callResult = conversions["any"](callResult, { context: context, globals: globalObject }); return callResult; }; invokeTheCallbackFunction[utils.wrapperSymbol] = value; invokeTheCallbackFunction.objectReference = value; return invokeTheCallbackFunction; };
Version data entries
26 entries across 26 versions & 1 rubygems