10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-08-25 13:41:50 +02:00
This commit is contained in:
scemama 2020-11-29 23:18:02 +00:00
parent cee6c0db4a
commit 8535c8d9a5

View File

@ -10,7 +10,11 @@ var fileCache = function () {
_cache = fileCache(); _cache = fileCache();
function getTextFromFileUrl(url,header={}) { function getTextFromFileUrl(url,header={}) {
if (url in _cache) {
return _cache[url]; return _cache[url];
} else {
return async () => {await getTextFromFileUrlAsync(url)};
}
} }