Examples
Example of working with cookies
Set a cookie
<script>
  import { cookie } from "@lukovio/wskit";
  cookie.set('profile', 'JohnDoe', 7); //cookie set "profile=JohnDoe"
</script>Get a cookie
<script>
  import { cookie } from "@lukovio/wskit";
  cookie.get('profile'); //cookie get "JohnDoe"
</script>Remove a cookie
<script>
  import { cookie } from "@lukovio/wskit";
  cookie.remove(profile); // remove cookie with name "profile"
</script>