Added clearCache() function
This commit is contained in:
@ -186,6 +186,10 @@ function checkCache(url) {
|
|||||||
return cache.hasOwnProperty(id)
|
return cache.hasOwnProperty(id)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function clearCache() {
|
||||||
|
cache = {}
|
||||||
|
}
|
||||||
|
|
||||||
function getUrlPath(u) {
|
function getUrlPath(u) {
|
||||||
let parsed = urlParser.parse(u)
|
let parsed = urlParser.parse(u)
|
||||||
let searchQuery = parsed.search || ''
|
let searchQuery = parsed.search || ''
|
||||||
@ -204,5 +208,6 @@ module.exports = {
|
|||||||
createChannel,
|
createChannel,
|
||||||
getBasename,
|
getBasename,
|
||||||
addToCache,
|
addToCache,
|
||||||
checkCache
|
checkCache,
|
||||||
|
clearCache
|
||||||
}
|
}
|
Reference in New Issue
Block a user