MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / bytesFromBase64

Function bytesFromBase64

packages/hosts/mcp/src/tool-server.ts:321–328  ·  view source on GitHub ↗
(base64: string)

Source from the content-addressed store, hash-verified

319};
320
321const bytesFromBase64 = (base64: string): Uint8Array => {
322 const binary = atob(base64);
323 const bytes = new Uint8Array(binary.length);
324 for (let index = 0; index < binary.length; index += 1) {
325 bytes[index] = binary.charCodeAt(index);
326 }
327 return bytes;
328};
329
330const decodeTextFile = (file: ToolFileValue): string => {
331 const text = new TextDecoder("utf-8", { fatal: false }).decode(bytesFromBase64(file.data));

Callers 1

decodeTextFileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected