From 610d4ce5bed63f08c8575d579daab15db506e3e0 Mon Sep 17 00:00:00 2001 From: "Bruce B. Anderson" Date: Tue, 12 Nov 2024 07:16:01 -0500 Subject: [PATCH] 0.0.850 --- y.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/y.ts b/y.ts index 59e86030..becf5499 100644 --- a/y.ts +++ b/y.ts @@ -8,9 +8,10 @@ export class Yield { #to: string; async to(guid: string){ this.#to = guid; + const objToPipe = await this.#yield(); } - async yield() : Promise{ + async #yield() : Promise{ return new Promise(async (resolve, reject) => { const {draw} = await import('./XV/draw.js'); const drawn = await draw(this.schema);