-
Notifications
You must be signed in to change notification settings - Fork 5.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement Blob url support for worker #2729
Conversation
@@ -63,6 +66,20 @@ function parse(url: string): URLParts | undefined { | |||
return undefined; | |||
} | |||
|
|||
// Based on https://github.com/kelektiv/node-uuid | |||
// TODO(kevinkassimo): Use deno_std version once possible. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
I think I now have an ideas now on how to use deno_std well (#2711)
@@ -0,0 +1 @@ | |||
code from Blob |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cool.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM - no comments
Was this reverted in 1.4.1? I'm having issues with my project because of this:
|
Related to #2726
Support worker creation using Blob URL.
Notice that it does not support static import statements (It seems to me that Chrome also does not support it with both blob url and data url?)
(Data URL version is left to implement later since there are more complications involved)