mirror of
https://github.com/th30d4y/OpenLearnX.git
synced 2026-05-26 19:26:33 +00:00
8 lines
151 B
JavaScript
8 lines
151 B
JavaScript
function mapValues(obj, fn) {
|
|
return Object.fromEntries([...Object.entries(obj)].map(([k, v]) => [k, fn(v)]));
|
|
}
|
|
|
|
module.exports = {
|
|
mapValues,
|
|
};
|