
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
The smallest, yet handy, Map
and WeakMap
utility ever.
import umap from 'umap';
// const umap = require('umap');
const map = umap(new Map);
console.assert(
(map.get(1) || map.set(1, Math.random())) ===
(map.get(1) || map.set(1, Math.random())),
'a very common pattern I have with Map instances'
);
const weakMap = umap(new WeakMap);
console.assert(
(weakMap.get(map) || weakMap.set(map, Math.random())) ===
(weakMap.get(map) || weakMap.set(map, Math.random())),
'which I use even more with WeakMap instances'
);
I am super tired of creating workarounds for the fact map.set(key, value)
doesn't return value but the map
itself, and so does the WeakMap.
This module will help, at least me, dropping all one-off helpers, here and there, to always do the same thing:
// before ๐ข
const cache = new WeakMap;
const setThing = (key, value) => {
cache.set(key, value);
return value;
};
const thing = cache.get(key) || setThing(key, value);
// with umap ๐
const cache = umap(new WeakMap);
const thing = cache.get(key) || cache.set(key, value);
This module is meant to solve one pattern only, and it does exactly that, so that if you store falsy values in Maps or WeakMaps, it is not a concern of this module.
FAQs
The smallest, yet handy, Map and WeakMap utility ever
The npm package umap receives a total of 7,185 weekly downloads. As such, umap popularity was classified as popular.
We found that umap demonstrated a not healthy version release cadence and project activity because the last version was released a year ago.ย It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600ร faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.