Skip to main content
Glama
IsPromise.js•485 B
'use strict'; var callBound = require('call-bound'); var $PromiseThen = callBound('Promise.prototype.then', true); var isObject = require('es-object-atoms/isObject'); // https://262.ecma-international.org/6.0/#sec-ispromise module.exports = function IsPromise(x) { if (!isObject(x)) { return false; } if (!$PromiseThen) { // Promises are not supported return false; } try { $PromiseThen(x); // throws if not a promise } catch (e) { return false; } return true; };

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