progress-promise
progress-promise copied to clipboard
Promise subclass with mechanism to report progress before resolving
Results
2
progress-promise issues
Sort by
recently updated
recently updated
newest added
We're running into issues when uglifying code that uses the progress-promise. We've tested this with Webpack3 and JSPM. The error we get: ``` ERROR in bundle.js from UglifyJs Unexpected token:...
This code will crash: ```ts new ProgressPromise((resolve, reject, progress) => { progress() }) ``` because at this time, the construction of the object has not been completed. One can call...