1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- 'use strict';
- function Store() {
- }
- exports.Store = Store;
- Store.prototype.synchronous = false;
- Store.prototype.findCookie = function(domain, path, key, cb) {
- throw new Error('findCookie is not implemented');
- };
- Store.prototype.findCookies = function(domain, path, cb) {
- throw new Error('findCookies is not implemented');
- };
- Store.prototype.putCookie = function(cookie, cb) {
- throw new Error('putCookie is not implemented');
- };
- Store.prototype.updateCookie = function(oldCookie, newCookie, cb) {
-
-
- throw new Error('updateCookie is not implemented');
- };
- Store.prototype.removeCookie = function(domain, path, key, cb) {
- throw new Error('removeCookie is not implemented');
- };
- Store.prototype.removeCookies = function(domain, path, cb) {
- throw new Error('removeCookies is not implemented');
- };
- Store.prototype.getAllCookies = function(cb) {
- throw new Error('getAllCookies is not implemented (therefore jar cannot be serialized)');
- };
|