mirror of
https://github.com/stablyai/orca.git
synced 2026-09-23 00:02:29 +00:00
11 lines
193 B
TypeScript
11 lines
193 B
TypeScript
export function scheduleOrphanedRemoteRuntimeSocketClose(
|
|
isOrphaned: () => boolean,
|
|
close: () => void
|
|
): void {
|
|
queueMicrotask(() => {
|
|
if (isOrphaned()) {
|
|
close()
|
|
}
|
|
})
|
|
}
|