Draco decoder visible name in WORKER

Please change DracoLoader.js so that the WORKER name is visible in the list. currently it generates a random name in the list.

Current: - three.js examples

Changed: - https://didisoftwares.ddns.net/18/index.html

on Dracoloader.js on function '_initDecoder() ’
change

this.workerSourceURL = URL.createObjectURL( new Blob( [ body ] ) );

to

this.workerSourceURL = 
				{ "data": URL.createObjectURL( new Blob( [ body ] ) ),
				  "name": "Draco Decoder"
				}