tweb/src/lib/polyfill.ts

67 lines
1.7 KiB
TypeScript
Raw Normal View History

2020-02-06 16:43:07 +01:00
import { bytesToHex, bytesFromHex, dT, bufferConcats } from "./bin_utils";
import { MTProto } from "./mtproto/mtproto";
export function logger(prefix: string) {
function Log(...args: any[]) {
return console.log(dT(), '[' + prefix + ']:', ...args);
}
Log.warn = function(...args: any[]) {
return console.warn(dT(), '[' + prefix + ']:', ...args);
};
Log.info = function(...args: any[]) {
return console.info(dT(), '[' + prefix + ']:', ...args);
};
Log.error = function(...args: any[]) {
return console.error(dT(), '[' + prefix + ']:', ...args);
};
Log.trace = function(...args: any[]) {
return console.trace(dT(), '[' + prefix + ']:', ...args);
}
return Log;
};
Object.defineProperty(Uint8Array.prototype, 'hex', {
get: function(): string {
return bytesToHex([...this]);
},
set: function(str: string) {
this.set(bytesFromHex(str));
},
enumerable: true,
configurable: true
});
Uint8Array.prototype.randomize = function() {
MTProto.secureRandom.nextBytes(this);
return this;
};
Uint8Array.prototype.concat = function(...args: Array<Uint8Array | ArrayBuffer | number[]>) {
return bufferConcats(this, ...args);
};
2020-02-22 17:00:17 +01:00
Array.prototype.forEachReverse = function<T>(callback: (value: T, index?: number, array?: Array<T>) => void) {
let length = this.length;
for(var i = length - 1; i >= 0; --i) {
callback(this[i], i, this);
}
};
2020-02-06 16:43:07 +01:00
declare global {
interface Uint8Array {
hex: string;
randomize: () => Uint8Array,
concat: (...args: Array<Uint8Array | ArrayBuffer | number[]>) => Uint8Array
}
2020-02-22 17:00:17 +01:00
interface Array<T> {
forEachReverse(callback: (value: T, index?: number, array?: Array<T>) => void): void;
}
2020-02-06 16:43:07 +01:00
}