CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
countBy.mjs11 linesDownload Raw Back to map
1function countBy(map, mapper) {2    const result = new Map();3    for (const [key, value] of map) {4        const mappedKey = mapper(value, key, map);5        result.set(mappedKey, (result.get(mappedKey) ?? 0) + 1);6    }7    return result;8}9 10export { countBy };11 
basant307/AI_Governance_Project · CoolFace