Index: node_modules/es-toolkit/dist/map/mapValues.mjs
===================================================================
--- node_modules/es-toolkit/dist/map/mapValues.mjs	(revision a762898ecd37a452c782821d4c2c4955c6ed2521)
+++ node_modules/es-toolkit/dist/map/mapValues.mjs	(revision a762898ecd37a452c782821d4c2c4955c6ed2521)
@@ -0,0 +1,10 @@
+function mapValues(map, getNewValue) {
+    const result = new Map();
+    for (const [key, value] of map) {
+        const newValue = getNewValue(value, key, map);
+        result.set(key, newValue);
+    }
+    return result;
+}
+
+export { mapValues };
