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