mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
29 lines
576 B
JavaScript
29 lines
576 B
JavaScript
export let localCache = {};
|
|
export let failedCache = {};
|
|
|
|
// Sometimes jQuery will return URLs with trailing slashes when the
|
|
// `href` didn't have them.
|
|
export function resetLocalCache() {
|
|
localCache = {};
|
|
}
|
|
|
|
export function resetFailedCache() {
|
|
failedCache = {};
|
|
}
|
|
|
|
export function setLocalCache(key, value) {
|
|
localCache[key] = value;
|
|
}
|
|
|
|
export function setFailedCache(key, value) {
|
|
failedCache[key] = value;
|
|
}
|
|
|
|
export function normalize(url) {
|
|
return url.replace(/\/$/, "");
|
|
}
|
|
|
|
export function lookupCache(url) {
|
|
return localCache[normalize(url)]?.outerHTML;
|
|
}
|