# 使用文档

## 初始化
class FastCache {
	constructor () {
		this.list = {}
	}

	set(key, value) {
		this.list[key] = value;
	}

	get(key) {
		return this.list[key]
	}
}

window.FastCache = FastCache