This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cyber-narrator-cn-ui/src/utils/cache.js
2021-07-01 15:39:48 +08:00

18 lines
264 B
JavaScript

/**
* 缓存
* @author 陈劲松
* @date 2021/6/30
*/
const cache = {
capitalGeo: null
}
export function getCache (key, defaultValue = null) {
return cache[key] ? cache[key] : defaultValue
}
export function setCache (key, value) {
cache[key] = value
}