File size: 147 Bytes
1e92f2d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import Lru from 'lru';

const HOUR_IN_MS = 3600000;
const stateCache = new Lru( {
	max: 500,
	maxAge: HOUR_IN_MS,
} );

export default stateCache;