Improve cookies.get() to handle both non-JSON values, too.
Esse commit está contido em:
@@ -31,7 +31,7 @@ var cookies = {
|
|||||||
while (c.charAt(0) == ' ') c = c.substring(1, c.length);
|
while (c.charAt(0) == ' ') c = c.substring(1, c.length);
|
||||||
if (c.indexOf(nameEQ) == 0) {
|
if (c.indexOf(nameEQ) == 0) {
|
||||||
var cval = decodeURIComponent(c.substring(nameEQ.length, c.length));
|
var cval = decodeURIComponent(c.substring(nameEQ.length, c.length));
|
||||||
return JSON.parse(cval);
|
try { return JSON.parse(cval); } catch (e) { return cval; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
Referência em uma Nova Issue
Bloquear um usuário