# mapset **Repository Path**: mirrors_WebReflection/mapset ## Basic Information - **Project Name**: mapset - **Description**: Map and WeakMap that returns value on .set(...) - **Primary Language**: Unknown - **License**: ISC - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-07-01 - **Last Updated**: 2026-05-23 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # mapset [![Build Status](https://travis-ci.com/WebReflection/mapset.svg?branch=main)](https://travis-ci.com/WebReflection/mapset) [![Coverage Status](https://coveralls.io/repos/github/WebReflection/mapset/badge.svg?branch=main)](https://coveralls.io/github/WebReflection/mapset?branch=main) `Map` and `WeakMap` that returns value on `.set(...)`. ```js import {MapSet, WeakMapSet} from '@webreflection/mapset'; const map = new MapSet; map.get('any') || map.set('any', 'value'); // "value" ```