Home
last modified time | relevance | path

Searched refs:oldCookie (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/npm/node_modules/tough-cookie/lib/
Dcookie.js1070 store.updateCookie = function(oldCookie, newCookie, cb) { argument
1075 function withCookie(err, oldCookie) { argument
1088 if (oldCookie) {
1091 if (options.http === false && oldCookie.httpOnly) { // step 11.2
1095 cookie.creation = oldCookie.creation; // step 11.3
1096 cookie.creationIndex = oldCookie.creationIndex; // preserve tie-breaker
1099 store.updateCookie(oldCookie, cookie, next); // step 12
Dstore.js55 Store.prototype.updateCookie = function(oldCookie, newCookie, cb) { argument
Dmemstore.js127 MemoryCookieStore.prototype.updateCookie = function(oldCookie, newCookie, cb) { argument
/third_party/node/deps/npm/node_modules/tough-cookie/
DREADME.md397 ### `store.updateCookie(oldCookie, newCookie, cb(err))`
399 …entation SHOULD check that the old value in the store is equivalent to `oldCookie` - how the confl…
405 The `newCookie` and `oldCookie` objects MUST NOT be modified.