Guest User

Untitled

a guest
Jan 21st, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function parse(cookie) {
  2. let result = {};
  3. let values = cookie.split(";");
  4. for( value of values ) {
  5. value = value.trim().split('=');
  6. if(value.length == 2) result[value[0]] = value[1];
  7. }
  8. return result;
  9. }
  10.  
  11. module.exports = parse;
Add Comment
Please, Sign In to add comment