1.0.1 • Published 3 years ago

lg-cookie v1.0.1

Weekly downloads
1
License
ISC
Repository
-
Last release
3 years ago

使用指南

安装依赖

$ npm install lg-cookie
# OR
$ yarn add lg-cookie

使用

import Cookie from 'lg-cookie'
// 1. 查询所有
Cookie.get();
// 2. 查询指定值
Cookie.get('token');
// 3. 设置值
Cookie.set('status', 1);
// 4. 删除指定值
Cookie.del('token');
// 5. 删除所有
Cookie.del();
// 6. 批量删除
Cookie.del(['token', 'status']);
1.0.1

3 years ago

1.0.0

3 years ago