Stop 2FA
Stop 2FA
This one works good: https://www.npmjs.com/package/@slack/web-api
My solution, in case someone would need ``` export class AppDateAdapter extends NativeDateAdapter { parse(value: string): Date | null { // 15.07.18 -> [15, 7, 18] const values: string[] =...
Yah, there was `monaco.d.ts` before. Where did you lose it? 
It's located inside [monaco-editor](https://github.com/microsoft/monaco-editor) But how to import it from there? 
As workaround I installed latest version of ngx-monaco-editor, which had `monaco.d.ts`: 9.0.0 But don't import monaco build from there, it's outdated. Import it directly from `monaco-editor`: ``` { "glob": "**/*",...
Here you go: 256 key and 128 iv ```typescript function getRandomKey(): Uint8Array { return getRandomBlock(32); } function getIV(): Uint8Array { return getRandomBlock(16); } function getRandomBlock(size: number): Uint8Array { const block:...
I'm working on encryption of large files now. At first, I was looking for this feature too. But then I found out that when you work with large files, you...
Like this for example: ```typescript function uint8ArrayToBase64(binary: Uint8Array): string { return btoa(new Uint8Array(binary).reduce((data, byte) => { return data + String.fromCharCode(byte); }, '')); } ```
Works 1.8x faster for me now. Amazing!
Hey, any news here? The update is great, it makes the package much faster, so it makes no sense to use code before the update. And everyone that wants the...