*Update dist
This commit is contained in:
parent
a7e0fbd190
commit
039583d77e
|
@ -83,12 +83,12 @@ export function createHash(data) {
|
||||||
export async function setupStream(stream) {
|
export async function setupStream(stream) {
|
||||||
const existing = stream[RPC_PROTOCOL_SYMBOL];
|
const existing = stream[RPC_PROTOCOL_SYMBOL];
|
||||||
if (existing) {
|
if (existing) {
|
||||||
await existing._channel.ready;
|
await existing.ready;
|
||||||
return existing;
|
return existing;
|
||||||
}
|
}
|
||||||
const rpc = new RPC(stream);
|
const rpc = new RPC(stream);
|
||||||
stream[RPC_PROTOCOL_SYMBOL] = rpc;
|
stream[RPC_PROTOCOL_SYMBOL] = rpc;
|
||||||
await existing.ready;
|
await rpc.ready;
|
||||||
return rpc;
|
return rpc;
|
||||||
}
|
}
|
||||||
export async function maybeGetAsyncProperty(object) {
|
export async function maybeGetAsyncProperty(object) {
|
||||||
|
|
Loading…
Reference in New Issue