Skip to main content
Glama
clamp.js•508 B
'use strict'; var $TypeError = require('es-errors/type'); var max = require('math-intrinsics/max'); var min = require('math-intrinsics/min'); // https://262.ecma-international.org/12.0/#clamping module.exports = function clamp(x, lower, upper) { if (typeof x !== 'number' || typeof lower !== 'number' || typeof upper !== 'number' || !(lower <= upper)) { throw new $TypeError('Assertion failed: all three arguments must be MVs, and `lower` must be `<= upper`'); } return min(max(lower, x), upper); };

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