Socket
Socket
Sign inDemoInstall

umap

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

umap


Version published
Weekly downloads
3.3K
increased by1.36%
Maintainers
1
Install size
6.22 kB
Created
Weekly downloads
 

Readme

Source

µmap 🗺

Build Status Coverage Status

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'
);

🤔 Reason

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);

🌈 It's Done!

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.

Keywords

FAQs

Last updated on 13 Mar 2020

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc