Results 19 comments of 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? ![image](https://user-images.githubusercontent.com/28440112/164144054-ab3e12d0-ae97-47f1-960f-27623bffd783.png)

It's located inside [monaco-editor](https://github.com/microsoft/monaco-editor) But how to import it from there? ![image](https://user-images.githubusercontent.com/28440112/164149891-34bd1bee-4a74-48e0-981b-a1f32929d0d3.png)

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); }, '')); } ```

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...