basant307/AI_Governance_Project
048
1'use strict';2 3Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });4 5function mapKeys(map, getNewKey) {6 const result = new Map();7 for (const [key, value] of map) {8 const newKey = getNewKey(value, key, map);9 result.set(newKey, value);10 }11 return result;12}13 14exports.mapKeys = mapKeys;15 