mirror of
https://git.hmsn.ink/kospo/helptalk/api.git
synced 2026-03-20 23:13:31 +09:00
6 lines
159 B
JavaScript
6 lines
159 B
JavaScript
export default function expandToHashMap(value, keys) {
|
|
return keys.reduce(function (hashMap, key) {
|
|
hashMap[key] = value;
|
|
return hashMap;
|
|
}, {});
|
|
} |