Skip to main content
Glama
Invoke.js•671 B
'use strict'; var $TypeError = require('es-errors/type'); var Call = require('./Call'); var IsArray = require('./IsArray'); var GetV = require('./GetV'); var isPropertyKey = require('../helpers/isPropertyKey'); // https://262.ecma-international.org/6.0/#sec-invoke module.exports = function Invoke(O, P) { if (!isPropertyKey(P)) { throw new $TypeError('Assertion failed: P must be a Property Key'); } var argumentsList = arguments.length > 2 ? arguments[2] : []; if (!IsArray(argumentsList)) { throw new $TypeError('Assertion failed: optional `argumentsList`, if provided, must be a List'); } var func = GetV(O, P); return Call(func, O, argumentsList); };

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/guangxiangdebizi/PPT-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server