1.0.0 • Published 8 years ago

key-set-map v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

key-set-map

master branch build status

Use similar sets to identify map entries.

Example

import SetMap from 'key-set-map';

const map = new SetMap();
map.set([3, 1, 4, 1, 5, 9], 'foobar');

console.log(map.get([1, 1, 3, 4, 5, 9])); // => "foobar"

Installing

$ npm install --save j-/key-set-map

Building

Will output to dist/set-map.js.

$ npm install && npm run build

Testing

$ npm install && npm test

License

MIT license.