/opt/canhelp/node_modules/@anthropic-ai/sdk/src/internal/utils
NameSizeModeActions
base64.ts12780644editdlrm
bytes.ts8310644editdlrm
env.ts6120644editdlrm
log.ts33440644editdlrm
path.ts32130644editdlrm
query.ts10400644editdlrm
sleep.ts1820644editdlrm
uuid.ts5940644editdlrm
values.ts34060644editdlrm
Edit: /opt/canhelp/node_modules/@anthropic-ai/sdk/src/internal/utils/base64.ts (1278B)
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { AnthropicError } from '../../core/error'; import { encodeUTF8 } from './bytes'; export const toBase64 = (data: string | Uint8Array | null | undefined): string => { if (!data) return ''; if (typeof (globalThis as any).Buffer !== 'undefined') { return (globalThis as any).Buffer.from(data).toString('base64'); } if (typeof data === 'string') { data = encodeUTF8(data); } if (typeof btoa !== 'undefined') { return btoa(String.fromCharCode.apply(null, data as any)); } throw new AnthropicError('Cannot generate base64 string; Expected `Buffer` or `btoa` to be defined'); }; export const fromBase64 = (str: string): Uint8Array => { if (typeof (globalThis as any).Buffer !== 'undefined') { const buf = (globalThis as any).Buffer.from(str, 'base64'); return new Uint8Array(buf.buffer, buf.byteOffset, buf.byteLength); } if (typeof atob !== 'undefined') { const bstr = atob(str); const buf = new Uint8Array(bstr.length); for (let i = 0; i < bstr.length; i++) { buf[i] = bstr.charCodeAt(i); } return buf; } throw new AnthropicError('Cannot decode base64 string; Expected `Buffer` or `atob` to be defined'); };