variable onceimport { once } from "https://deno.land/x/live@1.107.0/utils/sync.ts"; Run the function only once. usage: const runOnce = once() runOnce.do(() => new Date()) // this will return always the first value used. type<T>() => SyncOnce<T>