Increase template cache size from 100 to 200

This commit is contained in:
Dragory 2019-05-04 10:48:35 +03:00
parent f80d141c82
commit 3f0277120b

View file

@ -1,7 +1,7 @@
import has from "lodash.has";
import at from "lodash.at";
const TEMPLATE_CACHE_SIZE = 100;
const TEMPLATE_CACHE_SIZE = 200;
const templateCache: Map<string, ParsedTemplate> = new Map();
export class TemplateParseError extends Error {}