UNPKG

208 BJavaScriptView Raw
1const Cache = require('./Cache');
2
3class CodeSnippetsCache extends Cache {
4 constructor() {
5 super();
6 }
7}
8
9const instance = new CodeSnippetsCache();
10Object.freeze(instance);
11
12module.exports = instance;