@wabarc/cairn
Version:
Node package and CLI tool for saving web page as single HTML file
21 lines • 622 B
JavaScript
;
/*
* Copyright 2023 Wayback Archiver. All rights reserved.
* Use of this source code is governed by the MIT
* license that can be found in the LICENSE file.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.cairn = exports.Cairn = void 0;
const archiver_1 = require("./archiver");
process.on('uncaughtException', (e) => {
console.error(e);
});
class Cairn extends archiver_1.Archiver {
}
exports.Cairn = Cairn;
const cairn = new Cairn();
exports.cairn = cairn;
exports = module.exports = cairn;
exports.cairn = exports;
exports.Cairn = Cairn;
//# sourceMappingURL=cairn.js.map