UNPKG

leaguejs

Version:

Wrapper for the League of Legends API

14 lines (11 loc) 320 B
const NodeCache = require('node-cache'); // https://www.npmjs.com/package/node-cache /** * simple in-memory implementation * @see {@link https://www.npmjs.com/package/node-cache} */ class RequestCache extends NodeCache{ constructor(options) { super(options); } } module.exports = RequestCache;