1 2 3 4 5 6 7 8 9 10 11 12 13 14
var util = require('util'); var FolderOutput = require('../base'); function WebsiteOutput() { FolderOutput.apply(this, arguments); } util.inherits(WebsiteOutput, FolderOutput); // Write a page (parsable file) WebsiteOutput.prototype.onPage = function(page) { }; module.exports = WebsiteOutput;