UNPKG
farst-cache
Version:
latest (0.0.1)
0.0.1
精简的前端缓存工具,防止内存泄露
github.com/qiangf811/farst-cache
qiangf811/farst-cache
farst-cache
/
doc
/
use
/
README.md
20 lines
(14 loc)
•
177 B
Markdown
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 使用文档
## 初始化
``
`js const CF = window.FarstCache let cache = new CF() `
``
## 设置
``
`js cache.setValue('a',100) `
``
## 获取
``
`js cache.getValue('a') `
``