Is there any way I can attach a progress listener to the xhr.upload object used in fetch? ``` js xhr.upload.addEventListener('progress', function(){ ... }) ``` since I use fetch to upload files, I would find this very useful.