# advanced-map-mutable-multi-key

> Map-like class using mutable arrays as keys

Latest version **0.0.5** (published 2020-01-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install advanced-map-mutable-multi-key
pnpm add advanced-map-mutable-multi-key
yarn add advanced-map-mutable-multi-key
bun add advanced-map-mutable-multi-key
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.5 |
| Published | 2020-01-12 |
| First published | 2018-10-11 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Node | >= 8.9.0 |
| Dependencies | 4 |
| Unpacked size | 2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Hoàng Văn Khải |
| Maintainers | khai96_ |
| Keywords | map, multiple, keys, mutable |

## Links

- npm: https://www.npmjs.com/package/advanced-map-mutable-multi-key
- Repository: https://github.com/ksxnodemodules/nodemonorepo
- Homepage: https://github.com/ksxnodemodules/nodemonorepo#readme
- Issues: https://github.com/ksxnodemodules/nodemonorepo/issues
- npm.io page: https://npm.io/package/advanced-map-mutable-multi-key

## Dependencies (4)

- [tslib](https://npm.io/package/tslib.md) ^1.10.0
- [@types/node](https://npm.io/package/@types/node.md) ^13.1.6
- [advanced-map-types](https://npm.io/package/advanced-map-types.md) ^0.0.4
- [advanced-map-multi-key-base](https://npm.io/package/advanced-map-multi-key-base.md) ^0.0.5

## Alternatives

- [@lexical/table](https://npm.io/package/@lexical/table.md) — 3.0M weekly downloads
- [mantine-datatable](https://npm.io/package/mantine-datatable.md) — 98.2K weekly downloads
- [react-native-collapsible-tab-view](https://npm.io/package/react-native-collapsible-tab-view.md) — 70.6K weekly downloads
- [@handsontable/vue3](https://npm.io/package/@handsontable/vue3.md) — 16.1K weekly downloads
- [vuewordcloud](https://npm.io/package/vuewordcloud.md) — 7.2K weekly downloads

## Recent versions

- 0.0.5 (latest) — 2020-01-12
- 0.0.4 — 2019-10-05
- 0.0.3 — 2018-11-21
- 0.0.2 — 2018-10-16
- 0.0.1 — 2018-10-13
- 0.0.0 — 2018-10-11

## README

# advanced-map-mutable-multi-key

Map-like class using mutable arrays as keys

## Usage

```javascript
import MutableMultiKey from 'advanced-map-mutable-multi-key'
const map = new MutableMultiKey(Map)

const key = [0]
map.set(key, 'value')

map.get([0]) // expect: 'value'
map.get([1]) // expect: undefined
map.get(key) // expect: 'value'

key[0] = 1

map.get([0]) // expect: undefined
map.get([1]) // expect: 'value'
map.get(key) // expect: 'value'
```

## License

[MIT](https://git.io/vhaEz) © [Hoàng Văn Khải](https://github.com/KSXGitHub)

---
_Source: https://npm.io/package/advanced-map-mutable-multi-key · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
