mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-01 11:48:36 -05:00
4 lines
172 B
JavaScript
4 lines
172 B
JavaScript
export function createObject(keys, values) {
|
|
return keys.reduce((result, key, i) => ((result[key] = values[i]), result), {});
|
|
}
|
|
//# sourceMappingURL=createObject.js.map
|