mirror of
https://github.com/gradio-app/gradio.git
synced 2025-04-06 12:30:29 +08:00
Lite: Fix the isMessagePort()
type guard in js/wasm/src/worker-proxy.ts (#6416)
* Fix the `isMessagePort()` type guard in js/wasm/src/worker-proxy.ts * add changeset --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: Ali Abdalla <ali.si3luwa@gmail.com>
This commit is contained in:
parent
128ab5d65b
commit
5177132d71
6
.changeset/vast-socks-throw.md
Normal file
6
.changeset/vast-socks-throw.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
"@gradio/wasm": minor
|
||||
"gradio": minor
|
||||
---
|
||||
|
||||
feat:Lite: Fix the `isMessagePort()` type guard in js/wasm/src/worker-proxy.ts
|
@ -276,5 +276,5 @@ function isDedicatedWorker(
|
||||
function isMessagePort(
|
||||
obj: globalThis.Worker | MessagePort
|
||||
): obj is MessagePort {
|
||||
return "postMessage" in obj;
|
||||
return "close" in obj;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user