调整语法
parent
0619b424fe
commit
08576a85e0
|
@ -29,7 +29,7 @@ export function serialize(key, val, opts) {
|
||||||
if (opts.hasOwnProperty('expires') && opts.expires) {
|
if (opts.hasOwnProperty('expires') && opts.expires) {
|
||||||
// pairs.push('Expires=' + opts.expires.toUTCString())
|
// pairs.push('Expires=' + opts.expires.toUTCString())
|
||||||
// 有效期, 已不建议使用,改用 max-age
|
// 有效期, 已不建议使用,改用 max-age
|
||||||
if (Date.isDate(opts.expires)) {
|
if (opts.expires instanceof Date) {
|
||||||
opts.maxAge = ~~(opts.expires.getTime() / 1000)
|
opts.maxAge = ~~(opts.expires.getTime() / 1000)
|
||||||
} else {
|
} else {
|
||||||
opts.maxAge = +opts.expires
|
opts.maxAge = +opts.expires
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@gm5/response",
|
"name": "@gm5/response",
|
||||||
"version": "2.0.1",
|
"version": "2.0.2",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"description": "对Http的response进一步封装, 提供常用的API",
|
"description": "对Http的response进一步封装, 提供常用的API",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
"http"
|
"http"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"iofs": "^1.5.0"
|
"iofs": "^1.5.3"
|
||||||
},
|
},
|
||||||
"repository": "https://git.wkit.fun/gm5/response.git",
|
"repository": "https://git.wkit.fun/gm5/response.git",
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
|
|
Loading…
Reference in New Issue