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