# 使用文档

## 初始化

```js
const CF = window.FarstCache
let cache = new CF()
```

## 设置
```js
cache.setValue('a',100)
```

## 获取

```js
cache.getValue('a')
```
