Add method for reading session cookie
Assumes the session cookie is stored as JSON which may or may not have been compressed via zlib (indicated by a leading `.`), which is then base64-encoded, and made URL-safe by replacing all `+` and `/` characters with `-` and `_` respectively.
Showing
... | @@ -52,6 +52,7 @@ | ... | @@ -52,6 +52,7 @@ |
"lodash.range": "3.0.1", | "lodash.range": "3.0.1", | ||
"minilog": "2.0.8", | "minilog": "2.0.8", | ||
"node-sass": "3.3.3", | "node-sass": "3.3.3", | ||
"pako": "0.2.8", | |||
"po2icu": "git://github.com/LLK/po2icu.git#develop", | "po2icu": "git://github.com/LLK/po2icu.git#develop", | ||
"react-addons-test-utils": "0.14.7", | "react-addons-test-utils": "0.14.7", | ||
"react-modal": "0.6.1", | "react-modal": "0.6.1", | ||
... | ... |
Please register or sign in to comment