mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-03 19:26:41 +00:00
4 lines
55 B
TypeScript
4 lines
55 B
TypeScript
export function iife<T>(fn: () => T) {
|
|
return fn()
|
|
}
|