2018-06-13 22:39:39 +03:00
|
|
|
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
2018-06-17 23:47:28 +03:00
|
|
|
var bytes_1 = require("./bytes");
|
2018-07-31 01:59:52 +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
|
|
|
function decode(textData) {
|
2018-09-06 23:41:02 +03:00
|
|
|
return bytes_1.arrayify(new Uint8Array(Buffer.from(textData, 'base64')));
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
|
|
|
exports.decode = decode;
|
|
|
|
;
|
|
|
|
function encode(data) {
|
2018-09-06 23:41:02 +03:00
|
|
|
return Buffer.from(bytes_1.arrayify(data)).toString('base64');
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
|
|
|
exports.encode = encode;
|