Skip to content

Instantly share code, notes, and snippets.

@jhonnymoreira
Last active June 9, 2018 23:35
Show Gist options
  • Save jhonnymoreira/c529065d47183c14c7470f8a7ed35523 to your computer and use it in GitHub Desktop.
Save jhonnymoreira/c529065d47183c14c7470f8a7ed35523 to your computer and use it in GitHub Desktop.
const parseCookies = cookies =>
cookies.split(/;\s?/)
.reduce((parsedCookie, cookie) => {
const [key, value] = cookie.split('=')
parsedCookie[key] = (value
? value
: '')
return parsedCookie
}, {})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment