Skip to content

Refactor JSONCookie function for clarity and compliance #120

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,18 +76,18 @@ function cookieParser (secret, options) {
* Parse JSON cookie string.
*
* @param {String} str
* @return {Object} Parsed object or undefined if not json cookie
* @return {Object|undefined} Parsed object or undefined if not json cookie
* @public
*/

function JSONCookie (str) {
if (typeof str !== 'string' || str.substr(0, 2) !== 'j:') {
if (typeof str !== 'string' || !str.startsWith('j:')) {
return undefined
}

try {
return JSON.parse(str.slice(2))
} catch (err) {
} catch {
return undefined
}
}
Expand Down
Loading