diff --git a/helpers/util.js b/helpers/util.js index 39e1704603..48f98fc351 100644 --- a/helpers/util.js +++ b/helpers/util.js @@ -186,6 +186,10 @@ function checkCache(url) { return cache.hasOwnProperty(id) } +function clearCache() { + cache = {} +} + function getUrlPath(u) { let parsed = urlParser.parse(u) let searchQuery = parsed.search || '' @@ -204,5 +208,6 @@ module.exports = { createChannel, getBasename, addToCache, - checkCache + checkCache, + clearCache } \ No newline at end of file