Skip to content

Instantly share code, notes, and snippets.

@hadrysmateusz
Created January 3, 2020 01:39
Show Gist options
  • Save hadrysmateusz/a2045efa84c3c100f4cecb9ffddc8cd1 to your computer and use it in GitHub Desktop.
Save hadrysmateusz/a2045efa84c3c100f4cecb9ffddc8cd1 to your computer and use it in GitHub Desktop.
Markdium-Files in Client-Side JS: Ultimate Guide to Using Files in Web Applications
// using promise.then()
file.text().then(text => /* do something */);
// using async/await
const text = await file.text();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment