Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cookie为空时,parseCookie函数报错 #10

Open
xieyu33333 opened this issue Mar 19, 2018 · 0 comments
Open

cookie为空时,parseCookie函数报错 #10

xieyu33333 opened this issue Mar 19, 2018 · 0 comments

Comments

@xieyu33333
Copy link
Member

exports.parseCookie = function (cookieStr) {
var tmpArr = cookieStr.split('; ');
var obj = {};
tmpArr.forEach(function(item, index) {
if (item.match(/^[^=](?==)/)) {
obj[item.match(/^[^=]
(?==)/)[0]] = item.match(/=(\S*)/)[1]
}
});
return obj;
};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant