26 lines
603 B
TypeScript
26 lines
603 B
TypeScript
'use strict';
|
|
|
|
import { arrayify } from './bytes';
|
|
|
|
///////////////////////////////
|
|
// Imported Types
|
|
|
|
import { Arrayish } from './bytes';
|
|
|
|
///////////////////////////////
|
|
/*
|
|
declare class Buffer implements ArrayLike<number> {
|
|
constructor(data: any, encoding?: string);
|
|
toString(encoding?: string): any;
|
|
[key: number]: number;
|
|
length: number;
|
|
}
|
|
*/
|
|
export function decode(textData: string): Uint8Array {
|
|
return arrayify(new Uint8Array(Buffer.from(textData, 'base64')));
|
|
};
|
|
|
|
export function encode(data: Arrayish): string {
|
|
return Buffer.from(arrayify(data)).toString('base64');
|
|
}
|