Skip to main content
Glama
index.js•711 B
'use strict'; var callBound = require('call-bound'); var $boolToStr = callBound('Boolean.prototype.toString'); var $toString = callBound('Object.prototype.toString'); /** @type {import('.')} */ var tryBooleanObject = function booleanBrandCheck(value) { try { $boolToStr(value); return true; } catch (e) { return false; } }; var boolClass = '[object Boolean]'; var hasToStringTag = require('has-tostringtag/shams')(); /** @type {import('.')} */ module.exports = function isBoolean(value) { if (typeof value === 'boolean') { return true; } if (value === null || typeof value !== 'object') { return false; } return hasToStringTag ? tryBooleanObject(value) : $toString(value) === boolClass; };

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