Skip to main content
Glama

mcp-appstore

by appreply-co
difference.js912 B
var _contains = require('./internal/_contains'); var _curry2 = require('./internal/_curry2'); /** * Finds the set (i.e. no duplicates) of all elements in the first list not * contained in the second list. * * @func * @memberOf R * @since v0.1.0 * @category Relation * @sig [*] -> [*] -> [*] * @param {Array} list1 The first list. * @param {Array} list2 The second list. * @return {Array} The elements in `list1` that are not in `list2`. * @see R.differenceWith * @example * * R.difference([1,2,3,4], [7,6,5,4,3]); //=> [1,2] * R.difference([7,6,5,4,3], [1,2,3,4]); //=> [7,6,5] */ module.exports = _curry2(function difference(first, second) { var out = []; var idx = 0; var firstLen = first.length; while (idx < firstLen) { if (!_contains(first[idx], second) && !_contains(first[idx], out)) { out[out.length] = first[idx]; } idx += 1; } return out; });

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/appreply-co/mcp-appstore'

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