Skip to main content
Glama
ssv445

Lorem Ipsum MCP Server

by ssv445
concurrency.js1.03 kB
import * as core from "./core.js"; /** @internal */ export const match = (concurrency, sequential, unbounded, bounded) => { switch (concurrency) { case undefined: return sequential(); case "unbounded": return unbounded(); case "inherit": return core.fiberRefGetWith(core.currentConcurrency, concurrency => concurrency === "unbounded" ? unbounded() : concurrency > 1 ? bounded(concurrency) : sequential()); default: return concurrency > 1 ? bounded(concurrency) : sequential(); } }; /** @internal */ export const matchSimple = (concurrency, sequential, concurrent) => { switch (concurrency) { case undefined: return sequential(); case "unbounded": return concurrent(); case "inherit": return core.fiberRefGetWith(core.currentConcurrency, concurrency => concurrency === "unbounded" || concurrency > 1 ? concurrent() : sequential()); default: return concurrency > 1 ? concurrent() : sequential(); } }; //# sourceMappingURL=concurrency.js.map

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/ssv445/lorem-ipsum-mcp'

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