A Set implementation with expirable keys
npm install expiry-set 
> A Set implementation with expirable keys
```
$ npm install expiry-set
`js
import ExpirySet from 'expiry-set';
const set = new ExpirySet(1000, [
'unicorn'
]);
set.has('unicorn');
//=> true
set.add('rainbow');
console.log(set.size);
//=> 2
// Wait for 1 second...
set.has('unicorn');
//=> false
console.log(set.size);
//=> 0
`
#### maxAge
Type: number
Milliseconds until a key in the Set expires.
#### iterable
Type: Object
An Array or other iterable object.
Any of the Set methods.
- expiry-map - A Map` implementation with expirable items
MIT © Sam Verschueren