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:
Yuichiro Tachibana (Tsuchiya) 2023-12-08 20:32:27 +01:00 committed by GitHub
parent 128ab5d65b
commit 5177132d71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,6 @@
---
"@gradio/wasm": minor
"gradio": minor
---
feat:Lite: Fix the `isMessagePort()` type guard in js/wasm/src/worker-proxy.ts

View File

@ -276,5 +276,5 @@ function isDedicatedWorker(
function isMessagePort(
obj: globalThis.Worker | MessagePort
): obj is MessagePort {
return "postMessage" in obj;
return "close" in obj;
}