README
cookie操作 - 浏览器端
const cookie = require('zhf.cookie');
cookie.setCookie('hello', 'world');
console.log(cookie.getCookie('hello')); // 'world'
no description
<script type="module">
import zhfCookie from 'https://cdn.skypack.dev/zhf.cookie';
</script>
const cookie = require('zhf.cookie');
cookie.setCookie('hello', 'world');
console.log(cookie.getCookie('hello')); // 'world'