quickstart-nodejs icon indicating copy to clipboard operation
quickstart-nodejs copied to clipboard

getCookie method

Open Pratap-Desai opened this issue 5 years ago • 0 comments

function getCookie(name) { var v = document.cookie.match('(^|;) ?'+ name + '=([^;]*)(;|$)'); return v ? v[2] : null; }

always returns null when called for getCookie('csrfToken').

Pratap-Desai avatar Aug 14 '19 19:08 Pratap-Desai