Spaces:
Paused
Paused
File size: 322 Bytes
9ada4bc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
# cookie
This is a mirror of [cookie](https://www.npmjs.com/package/cookie), bundled and exposed as ES module.
## Install
```
npm install @bundled-es-modules/cookie
```
## Use
```html
<script type="module">
import cookie from '@bundled-es-modules/cookie';
cookie.parse('foo=bar;'); // { foo: 'bar' }
</script>
``` |