Last active
May 28, 2022 18:00
-
-
Save InfamousStarFox/cd246a19dcc3fec3d4e84176bb803e6d to your computer and use it in GitHub Desktop.
JavaScript cookie helper
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example Usage
cookie.set("myCookieName","myCookieValue");
cookie.get("myCookieName");
cookie.delete("myCookieName");
cookie.deleteAll();