mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-12-25 05:43:46 +01:00
check if url is in cache
This commit is contained in:
parent
008da4490a
commit
c085809936
@ -10,7 +10,11 @@ var fileCache = function () {
|
||||
|
||||
_cache = fileCache();
|
||||
function getTextFromFileUrl(url,header={}) {
|
||||
if (url in _cache) {
|
||||
return _cache[url];
|
||||
} else {
|
||||
return async () => {await getTextFromFileUrlAsync(url)};
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user