Not much to explain here. I just want to stop the copy-process. ``` .on('progress', (update) => { if (cancelled) { // cancel here without throwing an error because that's an antipattern afaik } }) ```
Not much to explain here. I just want to stop the copy-process.