Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 214 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 214 Bytes

使用文档

初始化

var EC = window.EasyCache;
var cache = new EC();

设置

cache.set("a", 100);

获取

alert(cache.get("a"));

清空

cache.clear();