browsertrix-crawler/util/constants.js

12 lines
339 B
JavaScript
Raw Normal View History

module.exports.HTML_TYPES = ["text/html", "application/xhtml", "application/xhtml+xml"];
module.exports.WAIT_UNTIL_OPTS = ["load", "domcontentloaded", "networkidle0", "networkidle2"];
module.exports.BEHAVIOR_LOG_FUNC = "__bx_log";
module.exports.DEFAULT_SELECTORS = [{
selector: "a[href]",
extract: "href",
isAttribute: false
}];