Examples

Example of working with cookies

<script>
  import { cookie } from "@lukovio/wskit";
  cookie.set('profile', 'JohnDoe', 7); //cookie set "profile=JohnDoe"
</script>
<script>
  import { cookie } from "@lukovio/wskit";
  cookie.get('profile'); //cookie get "JohnDoe"
</script>
<script>
  import { cookie } from "@lukovio/wskit";
  cookie.remove(profile); // remove cookie with name "profile"
</script>