cdn-cache-check
Version:
Makes HTTP requests to URLs and parses response headers to determine caching behaviour
19 lines (13 loc) • 552 B
JavaScript
const debug = require('debug')('cdn-cache-check-lib');
debug('Entry: [%s]', __filename);
// Initialise console colours
const chalk = require('chalk');
// Function of notifies the user of how requests, across how many domains, are going to be make
function displayRequestSummary(urlCount, domainCount) {
let notification = chalk.cyan(`Checking ${urlCount} URLs`);
if (domainCount > 1) {
notification += chalk.cyan(` across ${domainCount} domains`);
}
console.log(notification);
}
module.exports = { displayRequestSummary };