UNPKG

farmbot

Version:
5 lines (4 loc) 161 B
export function pick<T>(target: any, value: string, fallback: T) { const result = target[value]; return (typeof result === undefined) ? fallback : result; }