simple-cookie
Advanced tools
Comparing version 0.0.2 to 0.0.3
@@ -14,5 +14,5 @@ function printExpires(expires){ | ||
obj.name+'='+encodeURIComponent(obj.value), | ||
( typeof obj.expires != 'undefined' ? printExpires(obj.expires) : '' ), | ||
( typeof obj.path != 'undefined' ? 'Path='+obj.path : 'Path=/' ), | ||
( typeof obj.domain != 'undefined' ? 'Domain='+obj.domain : '' ), | ||
( typeof obj.expires != 'undefined' && obj.expires ? printExpires(obj.expires) : '' ), | ||
( typeof obj.path != 'undefined' && obj.path ? 'Path='+obj.path : 'Path=/' ), | ||
( typeof obj.domain != 'undefined' && obj.domain ? 'Domain='+obj.domain : '' ), | ||
( typeof obj.secure != 'undefined' && obj.secure ? 'secure' : '' ), | ||
@@ -19,0 +19,0 @@ ( typeof obj.httponly != 'undefined' && obj.httponly ? 'HttpOnly' : '' ) |
{ | ||
"name": "simple-cookie", | ||
"version": "0.0.2", | ||
"version": "0.0.3", | ||
"description": "Simple cookie parser & serializer", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5374