@stevenleep/mapstore
v0.0.1
Published
## 安装 ```bash pnpm add @stevenleep/mapstore ```
Downloads
4
Readme
@stevenleep/mapstore
安装
pnpm add @stevenleep/mapstore使用
BaseStoreMap
import { BaseStoreMap } from '@stevenleep/mapstore';
const store = new BaseStoreMap();
store.add('key', 'value');
store.getStore("key"); // valueCollectionStoreMap
import { CollectionStoreMap } from '@stevenleep/mapstore';
const store = new CollectionStoreMap();
store.add('key', 'value');
store.getStore("key"); // [value]