Include build output for git installs
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.MemoryCookieStore = void 0;
|
||||
const tough_cookie_1 = require("tough-cookie");
|
||||
class MemoryCookieStore {
|
||||
cookieJar = new tough_cookie_1.CookieJar();
|
||||
async load() {
|
||||
return this.cookieJar;
|
||||
}
|
||||
async save(cookieJar) {
|
||||
this.cookieJar = cookieJar;
|
||||
}
|
||||
async clear() {
|
||||
this.cookieJar = new tough_cookie_1.CookieJar();
|
||||
}
|
||||
}
|
||||
exports.MemoryCookieStore = MemoryCookieStore;
|
||||
//# sourceMappingURL=MemoryCookieStore.js.map
|
||||
Reference in New Issue
Block a user