chore: generate sdk into packages/sdk
This commit is contained in:
40
packages/sdk/src/internal/utils/base64.ts
Normal file
40
packages/sdk/src/internal/utils/base64.ts
Normal file
@@ -0,0 +1,40 @@
|
||||
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
|
||||
import { OpencodeError } 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 OpencodeError('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 OpencodeError('Cannot decode base64 string; Expected `Buffer` or `atob` to be defined');
|
||||
};
|
||||
Reference in New Issue
Block a user