Files
kiss-translator/src/libs/index.js

13 lines
227 B
JavaScript
Raw Normal View History

2023-08-30 18:05:37 +08:00
import { CACHE_NAME } from "../config";
2023-07-20 13:45:41 +08:00
/**
2023-08-30 18:05:37 +08:00
* 清除缓存数据
2023-07-20 13:45:41 +08:00
*/
2023-08-30 18:05:37 +08:00
export const tryClearCaches = async () => {
2023-08-27 17:43:27 +08:00
try {
2023-08-30 18:05:37 +08:00
caches.delete(CACHE_NAME);
2023-08-27 17:43:27 +08:00
} catch (err) {
2023-08-30 18:05:37 +08:00
console.log("[clean caches]", err.message);
2023-08-27 17:43:27 +08:00
}
2023-07-20 13:45:41 +08:00
};