© 2026 Hedgehog Software, LLC
busyable
const busyable = (fn: (...args: any) => Promise<void>) => { return async (...args: any) => { busy = true; await fn(...args); busy = false; }; };