Skip to main content
Glama
index.js1.21 kB
'use strict' /* global SharedArrayBuffer, Atomics */ if (typeof SharedArrayBuffer !== 'undefined' && typeof Atomics !== 'undefined') { const nil = new Int32Array(new SharedArrayBuffer(4)) function sleep (ms) { // also filters out NaN, non-number types, including empty strings, but allows bigints const valid = ms > 0 && ms < Infinity if (valid === false) { if (typeof ms !== 'number' && typeof ms !== 'bigint') { throw TypeError('sleep: ms must be a number') } throw RangeError('sleep: ms must be a number that is greater than 0 but less than Infinity') } Atomics.wait(nil, 0, 0, Number(ms)) } module.exports = sleep } else { function sleep (ms) { // also filters out NaN, non-number types, including empty strings, but allows bigints const valid = ms > 0 && ms < Infinity if (valid === false) { if (typeof ms !== 'number' && typeof ms !== 'bigint') { throw TypeError('sleep: ms must be a number') } throw RangeError('sleep: ms must be a number that is greater than 0 but less than Infinity') } const target = Date.now() + Number(ms) while (target > Date.now()){} } module.exports = sleep }

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/krtw00/search-mcp'

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