-
[JS] 웹 프론트 쿠키 파서programing/Language 2019. 11. 18. 13:35
안녕하세요, Einere입니다.
(ADblock을 꺼주시면 감사하겠습니다.)
프론트용 쿠키 파서 코드
document.cookie.split(/; */).reduce((obj, str) => { if (str === "") return obj; const eq = str.indexOf('='); const key = eq > 0 ? str.slice(0, eq) : str; let val = eq > 0 ? str.slice(eq + 1) : null; if (val != null) try { val = decodeURIComponent(val); } catch(ex) { /* pass */ } obj[key] = val; return obj; }, {});
참고
https://gist.github.com/rendro/525bbbf85e84fa9042c2
'programing > Language' 카테고리의 다른 글
[JS] 객체에 관하여 (0) 2020.01.01 [Functional] 고차 함수 (0) 2019.12.29 [React] react에서 fontawesome사용하는 방법 (0) 2019.10.23 [Sequelize] 시퀄라이즈로 날짜 필터링 쿼리 구현하기 (0) 2019.10.17 [Node] sequelize로 seed기능 사용하기 (0) 2019.10.16 댓글