(path)
| 2757 | } |
| 2758 | |
| 2759 | function globalWhenExtractFileReject(path) |
| 2760 | { |
| 2761 | if(extractingPromisesST[path]) clearTimeout(extractingPromisesST[path]); |
| 2762 | |
| 2763 | if(extractingPromises[path]) |
| 2764 | { |
| 2765 | const globalExtracting = extractingPromises[path]; |
| 2766 | delete extractingPromises[path]; |
| 2767 | globalExtracting.reject(); |
| 2768 | } |
| 2769 | } |
| 2770 | |
| 2771 | // Use this to remove generated vector images if window.devicePixelRatio is changed |
| 2772 | async function removeTmpVector() |
no outgoing calls
no test coverage detected