A slow key-value store using constructors as the key
npm install typemap

A slow key-value store using constructors as the key. Runs in O(n) time when
retrieving.

```
$ npm install typemap
`javascript
var TypeMap = require('typemap');
var map = TypeMap();
map.set(SomeType, 'foo');
map.set(SomeOtherType, 'bar');
map.get(SomeType); // 'foo'
map.set(SomeOtherType); // 'bar'
`
```
$ npm test
MIT