OwlCyberSecurity - MANAGER
Edit File: expandToHashMap.js
export default function expandToHashMap(value, keys) { return keys.reduce(function (hashMap, key) { hashMap[key] = value; return hashMap; }, {}); }