UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

4 lines (3 loc) • 154 B
export function createObject(keys: string[], values: any[]) { return keys.reduce((result, key, i) => ((result[key] = values[i]), result), {} as any); }