basant307/AI_Governance_Project
048
1# cookie2 3This is a mirror of [cookie](https://www.npmjs.com/package/cookie), bundled and exposed as ES module.4 5## Install6 7```8npm install @bundled-es-modules/cookie9```10 11## Use12 13```html14<script type="module">15 import cookie from '@bundled-es-modules/cookie';16 cookie.parse('foo=bar;'); // { foo: 'bar' }17</script>18```