pnpm add @stevenleep/mapstore
import { BaseStoreMap } from '@stevenleep/mapstore';
const store = new BaseStoreMap();
store.add('key', 'value');
store.getStore("key"); // value
import { CollectionStoreMap } from '@stevenleep/mapstore';
const store = new CollectionStoreMap();
store.add('key', 'value');
store.getStore("key"); // [value]