Skip to main content
Glama
CodePointsToString.js•735 B
'use strict'; var $TypeError = require('es-errors/type'); var UTF16EncodeCodePoint = require('./UTF16EncodeCodePoint'); var IsArray = require('./IsArray'); var forEach = require('../helpers/forEach'); var isCodePoint = require('../helpers/isCodePoint'); // https://262.ecma-international.org/12.0/#sec-codepointstostring module.exports = function CodePointsToString(text) { if (!IsArray(text)) { throw new $TypeError('Assertion failed: `text` must be a sequence of Unicode Code Points'); } var result = ''; forEach(text, function (cp) { if (!isCodePoint(cp)) { throw new $TypeError('Assertion failed: `text` must be a sequence of Unicode Code Points'); } result += UTF16EncodeCodePoint(cp); }); return result; };

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