Searched refs:oldCookie (Results 1 – 4 of 4) sorted by relevance
/third_party/node/deps/npm/node_modules/tough-cookie/lib/ |
D | cookie.js | 1070 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
|
D | store.js | 55 Store.prototype.updateCookie = function(oldCookie, newCookie, cb) { argument
|
D | memstore.js | 127 MemoryCookieStore.prototype.updateCookie = function(oldCookie, newCookie, cb) { argument
|
/third_party/node/deps/npm/node_modules/tough-cookie/ |
D | README.md | 397 ### `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.
|