Skip to content

Commit

Permalink
adding async await examples to learning area
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisdavidmills committed Feb 21, 2019
1 parent 8ea7256 commit 040de1d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<script>
async function myFetch() {
try {
let response = await fetch('coffe.jpg');
let response = await fetch('coffee.jpg');
let myBlob = await response.blob();

let objectURL = URL.createObjectURL(myBlob);
Expand Down

0 comments on commit 040de1d

Please sign in to comment.