Limit the Path2D-checks in the worker-thread to Node.js (PR 16238 follow-up, issue 16289)
				
					
				
			The changes in PR 16238 were intended specifically for Node.js environments, however they accidentally applied to older browsers as well. *Please note:* In up-to-date browsers `Path2D` is available in Workers, which should be connected to the introduction of `OffscreenCanvas`.
This commit is contained in:
		
							parent
							
								
									342dc760da
								
							
						
					
					
						commit
						edd13895dd
					
				| @ -134,7 +134,7 @@ class WorkerMessageHandler { | |||||||
|       // a non-translated/non-polyfilled build of the library, since that would
 |       // a non-translated/non-polyfilled build of the library, since that would
 | ||||||
|       // quickly fail anyway because of missing functionality.
 |       // quickly fail anyway because of missing functionality.
 | ||||||
|       if ( |       if ( | ||||||
|         typeof Path2D === "undefined" || |         (isNodeJS && typeof Path2D === "undefined") || | ||||||
|         typeof ReadableStream === "undefined" |         typeof ReadableStream === "undefined" | ||||||
|       ) { |       ) { | ||||||
|         const partialMsg = |         const partialMsg = | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user