Skip to main content
Glama
SetDataHas.js•756 B
'use strict'; var $TypeError = require('es-errors/type'); var CanonicalizeKeyedCollectionKey = require('./CanonicalizeKeyedCollectionKey'); var IsArray = require('./IsArray'); var SameValue = require('./SameValue'); var some = require('../helpers/some'); // https://262.ecma-international.org/16.0/#sec-setdatahas module.exports = function SetDataHas(setData, value) { if (!IsArray(setData) && setData !== 'EMPTY') { throw new $TypeError('Assertion failed: `setData` must be a List or ~EMPTY~'); } // if (SetDataIndex(setData, value) === 'NOT-FOUND') { return false; } // step 1 // return true; // step 2 var canonValue = CanonicalizeKeyedCollectionKey(value); return some(setData, function (e) { return SameValue(e, canonValue); }); };

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