npm.io
1.2.0 • Published 6 years ago

@essentials/one-key-map

Licence
MIT
Version
1.2.0
Deps
0
Size
9 kB
Vulns
0
Weekly
0
Stars
11

@essentials/one-key-map

Bundlephobia Types NPM Version MIT License

npm i @essentials/one-key-map

A Map-like data structure that only stores the most recently set key/value pair

Quick Start

import OneKeyMap from '@essentials/one-key-map'

const map = new OneKeyMap()
map.set('foo', 'bar')
map.get('foo')
// bar
map.set('foo2', 'bar2')
map.get('foo')
// undefined
map.get('foo2')
// bar2

LICENSE

MIT

Keywords