Store multiple values under each map key.
$ npm install @github/multimap
import MultiMap from '@github/multimap'
const map = new MultiMap<string, number>()
map.set('a', 1)
map.set('a', 2)
map.get('a') // => Set([1, 2])
npm install
npm test
Distributed under the MIT license. See LICENSE for details.