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