@@ -621,6 +621,10 @@ if (isMainThread) {
621
621
<!-- YAML
622
622
added: v10.5.0
623
623
changes:
624
+ - version: REPLACEME
625
+ pr-url: https://github.com/nodejs/node/pull/34584
626
+ description: The `filename` parameter can be a WHATWG `URL` object using
627
+ `data:` protocol.
624
628
- version: REPLACEME
625
629
pr-url: https://github.com/nodejs/node/pull/34394
626
630
description: The `trackUnmanagedFds` option was set to `true` by default.
@@ -654,7 +658,9 @@ changes:
654
658
* ` filename ` {string|URL} The path to the Worker’s main script or module. Must
655
659
be either an absolute path or a relative path (i.e. relative to the
656
660
current working directory) starting with ` ./ ` or ` ../ ` , or a WHATWG ` URL `
657
- object using ` file: ` protocol.
661
+ object using ` file: ` or ` data: ` protocol.
662
+ When using a [ ` data: ` URL] [ ] , the data is interpreted based on MIME type using
663
+ the [ ECMAScript module loader] [ ] .
658
664
If ` options.eval ` is ` true ` , this is a string containing JavaScript code
659
665
rather than a path.
660
666
* ` options ` {Object}
@@ -902,6 +908,7 @@ active handle in the event system. If the worker is already `unref()`ed calling
902
908
[ `AsyncResource` ] : async_hooks.html#async_hooks_class_asyncresource
903
909
[ `Buffer` ] : buffer.html
904
910
[ `Buffer.allocUnsafe()` ] : buffer.html#buffer_static_method_buffer_allocunsafe_size
911
+ [ ECMAScript module loader ] : esm.html#esm_data_imports
905
912
[ `ERR_MISSING_MESSAGE_PORT_IN_TRANSFER_LIST` ] : errors.html#errors_err_missing_message_port_in_transfer_list
906
913
[ `ERR_WORKER_NOT_RUNNING` ] : errors.html#ERR_WORKER_NOT_RUNNING
907
914
[ `EventEmitter` ] : events.html
@@ -953,3 +960,4 @@ active handle in the event system. If the worker is already `unref()`ed calling
953
960
[ child processes ] : child_process.html
954
961
[ contextified ] : vm.html#vm_what_does_it_mean_to_contextify_an_object
955
962
[ v8.serdes ] : v8.html#v8_serialization_api
963
+ [ `data:` URL ] : https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs
0 commit comments