Skip to main content
Glama

mcp-appstore

by appreply-co
modulo.js791 B
var _curry2 = require('./internal/_curry2'); /** * Divides the second parameter by the first and returns the remainder. Note * that this function preserves the JavaScript-style behavior for modulo. For * mathematical modulo see `mathMod`. * * @func * @memberOf R * @since v0.1.1 * @category Math * @sig Number -> Number -> Number * @param {Number} a The value to the divide. * @param {Number} b The pseudo-modulus * @return {Number} The result of `b % a`. * @see R.mathMod * @example * * R.modulo(17, 3); //=> 2 * // JS behavior: * R.modulo(-17, 3); //=> -2 * R.modulo(17, -3); //=> 2 * * var isOdd = R.modulo(R.__, 2); * isOdd(42); //=> 0 * isOdd(21); //=> 1 */ module.exports = _curry2(function modulo(a, b) { return a % b; });

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