about summary refs log tree commit diff
path: root/src/lib/functions.ts
blob: d6fbf5b92cfddb937a7b7c085b668b01b2a3b8b4 (plain) (blame)
1
2
3
4
5
6
export function choose<U, T extends Record<string, U>>(
  value: keyof T,
  choices: T,
): U {
  return choices[value]
}