variable onceimport { once } from "https://dotland.deno.dev/x/live@1.63.12/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>