ethers.js/src.ts/utils/base64.ts

26 lines
603 B
TypeScript
Raw Normal View History

2018-06-13 22:39:39 +03:00
'use strict';
import { arrayify } from './bytes';
///////////////////////////////
// Imported Types
2018-06-13 22:39:39 +03:00
import { Arrayish } from './bytes';
///////////////////////////////
/*
2018-06-13 22:39:39 +03:00
declare class Buffer implements ArrayLike<number> {
constructor(data: any, encoding?: string);
toString(encoding?: string): any;
[key: number]: number;
length: number;
}
*/
2018-06-13 22:39:39 +03:00
export function decode(textData: string): Uint8Array {
return arrayify(new Uint8Array(Buffer.from(textData, 'base64')));
2018-06-13 22:39:39 +03:00
};
export function encode(data: Arrayish): string {
return Buffer.from(arrayify(data)).toString('base64');
2018-06-13 22:39:39 +03:00
}